Log in

View Full Version : Css-html



komjj2
11-11-2007, 05:57 PM
Instead of pasting the code to http://www.dynamicdrive.com/dynamicindex1/davidmenu.htm In every page, is there a way to tell CSS to do it?

thetestingsite
11-11-2007, 06:01 PM
Take this code:



A.ssmItems:link {color:black;text-decoration:none;}
A.ssmItems:hover {color:black;text-decoration:none;}
A.ssmItems:active {color:black;text-decoration:none;}
A.ssmItems:visited {color:black;text-decoration:none;}


Place it in a file called ssm.css and link to it in every page like so:



<link rel="stylesheet" href="ssm.css" type="text/css">


Hope this helps.

komjj2
11-12-2007, 11:55 PM
thx ill try that