sandy1028 Posted February 4, 2008 Share Posted February 4, 2008 Font color is not red. It is showing black. How to make it red. <option value=\"\" state="disabled"><font color="#FF0000">$d</font></option> Link to comment https://forums.phpfreaks.com/topic/89306-font-color/ Share on other sites More sharing options...
dbrimlow Posted February 4, 2008 Share Posted February 4, 2008 This is the css thread ... font tags and other "markup styling tags" don't work here. And at the risk of promoting the heavy handed use of acceptable "inline styles" (still better than markup style tags), while still wanting to help you now, your solution would be: <option value=\"\" state="disabled" style=\"color:#FF0000\">$d</option> You really NEED to at least learn the most basic and fundamental css. Your code must be a mess of echoing fonts all over the place. With a few lines of css in your head tag you could eliminate 70% of the lines in your code that echo "fonts" and "colors" and "borders". Link to comment https://forums.phpfreaks.com/topic/89306-font-color/#findComment-457355 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.