by ffstock » Sat Jul 12, 2008 8:24 am
According to this I think the style sheet is Modern.css.
<head>
<title>
[-- IF PAGE.Title --]
[-- PAGE.Title --]
[-- ELSE --]
[-- PAGE.Name REMOVE_HTML --]
[-- END_IF --]
</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
[-- INCLUDE Modern.css PROCESS --]
</head>
Below is a copy of where I think the categories style is from in the Moden.css where I have modified in green.
/*---------- Left Side ----------*/
#leftnav {
width: 180px;
margin: 0px;
padding: 0px;
background: [-- VAR.LinkColor --];
vertical-align: top;
height: 450px;
}
#lefttext {
margin: 0px;
padding: 7px;
color: [-- VAR.BackgroundColor --];
}
#links {
margin: 0px;
margin-bottom: 0px;
padding: 0px;
background: [-- VAR.LinkColor --];
}
#links li {
list-style-type: none;
margin-bottom: 0px;
font-size: 18pt;
color: [-- VAR.BackgroundColor --];
}
#links li a {
margin: 0px;
}
#links li a {
display: block;
color: [-- VAR.BackgroundColor --];
text-decoration: none;
font-weight: bold;
margin: 0px;
padding: 2px 6px;
border-bottom: 1px solid [-- VAR.VisitedLinkColor --];
border-top: 1px solid [-- VAR.LinkColor --];
}
#links li a:hover {
color: #000000;
background: [-- VAR.ActiveLinkColor --];
}
Am I in the right place? Any more information is greatly appreciated.