XPerties Posted June 7, 2003 Posted June 7, 2003 I have a script that is cgi and is calling from the header.html. Im trying to get the following to be as:Text/links : color black (#000000)Visited link: grey ( #808080 )Font #2This is the code Im trying to use, I know Im missing something or havent set it right. Could you take a look and help a poor sole.body,td,div,.p,a{font-family:MS Sans Serif SIZE="+1"}.f,.fl:link{color:#000000}a:visited,.fl:visited{color:#808080}ALINK="#000000"a:active,.fl:active{color:#000000}.ch{cursor:pointer;cursor:hand}
Aaron Posted June 7, 2003 Posted June 7, 2003 That's some messy CSS code you got there! Paste in the <head> area of the code:<style type="text/css">body { font-family: sans-serif; font-size: 12px; color: #000000;}a:visited {color: #808080; text-decoration: none; }a:link {color: #000000; text-decoration: none; } </style>Then make more modifications as you wish
XPerties Posted June 7, 2003 Author Posted June 7, 2003 Yeah I know it was messy well anyways I used your code and it didn't work, so this leads me to believe the cgi script is not pulling from the header.html. Dam, time to search through all the files now. Thanks tho, I can now reference back to it to avoid messy times in the future.
XPerties Posted June 7, 2003 Author Posted June 7, 2003 well crap, this is wierd. It has to be pulling from the header file.If I change the color it changes the color of the text. Just not the size. Is there another way to add text size to a html file?
MillerMagnum Posted June 7, 2003 Posted June 7, 2003 try changing the .html on your css to .shtml and see what happens.
XPerties Posted June 7, 2003 Author Posted June 7, 2003 try changing the .html on your css to .shtml and see what happens.I don't have a css.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now