• 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!

Color of text in submit button

xexam

New Member
Joined
Aug 3, 2010
Messages
172
Reaction score
1
<input type="submit" value="Click to buy!" ><br><h5><b>for '.$item['points'].' points</b></h5></form>

xeo31j.jpg


how do I set color of "Click to buy"? I've tried everything, but nothing worked properly

<input type="submit" value="Click to buy!" color=#000000 ><br><h5><b>for '.$item['points'].' points</b></h5></form>

doesnt work, any ideas?

@down
i did multiple combinations, nothing worked
 
Last edited:
Can you try this?:

PHP:
<input type="submit" value="Click to buy!" ><br><h5><font color="#000000"><b>for '.$item['points'].' points</b></font></h5></form>

Or just change #000000 by black, assuming that #000000 is the black colour.
 
Back
Top