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> Quote Link to comment 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". Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.