Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Style Help

Status
Not open for further replies.

WJProctor

Programmer
Jun 20, 2003
151
GB
Hi could someone look at the code below. I thought this was right for setting up the styles of inputs, but it dont seem to work. Hope somone can help me out.

<head>
<title>EBMIS.co.uk :: Error Reporter</title>
<style type=&quot;text/css&quot;>
INPUT(font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;)
SELECT(font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;)
TEXTAREA(font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;)
</style>
</head>

Cheers

Jp
 
use curly braces, not parentheses...change to


<head>
<title>EBMIS.co.uk :: Error Reporter</title>
<style type=&quot;text/css&quot;>
INPUT{font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;}
SELECT{font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;}
TEXTAREA{font-family:Arial Rounded MT Bold;font-size:14px;color:#0000FF;}
</style>
</head>




=========================================================
-jeff
try { succeed(); } catch(E) { tryAgain(); }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top