View Single Post
Old 07-31-2005, 02:32 PM   #7 (permalink)
susanh
Junior Member
 
Join Date: Jun 2005
Posts: 29
Wink

You could simply create a default.css file like below and save it to your web space root directory or where your index html file lives. Just add a line to your web doc like so:

Right before the /head
<LINK href="Default.css" rel=stylesheet type="text/css">
</head>

default.css
PHP Code:
BODY {
    
FONT-SIZE10ptFONT-FAMILYVerdana
}
A:hover {
    
COLORredFONT-FAMILYVerdanaTEXT-DECORATIONunderline
}
H3 {
    
FONT-WEIGHTboldFONT-SIZE12ptFONT-FAMILYVerdana
}
TABLE {
    
FONT-SIZE10ptFONT-FAMILYVerdana
}
{
    
FONT-SIZE9ptFONT-FAMILYVerdana
}
TD {
    
FONT-SIZE10ptFONT-FAMILYVerdana
}
.
topLinks {
    
FONT-SIZE8ptCOLORdarkblueFONT-FAMILYVerdanaTEXT-DECORATIONnone


So code your links like this:
<a class=topLinks href="somefile.zip"><b>some_text</b></a>

Hope this helps
susanh is offline   Reply With Quote
Sponsored Links