• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC How to add custom button image

jackl90

Member
Joined
Jul 25, 2017
Messages
249
Reaction score
12
how can i add a button image in "Search"


characterseach.php

CSS:
        <form type="submit" action="characterprofile.php" method="get">
            <left><input type="text" name="name" class="button_fill"><br>
            <br><input type="submit" class="button_custom" value="Search"></center><br>
            </form>

\layout\images\button-bg.jpg this the location of button in my www folder
 
try this :


PHP:
<input type="submit" value="" class="hover" style="background: url(layout/images/button-bg.jpg); width:120px;height:18px;border: 0 none;" border="0">
 
Back
Top