Forum Moderators: not2easy
example:
<import standard stylesheet in head>
<from here all linktexts have to be white>
<titlebar background=dark>
<a href="someurl">text should be white</a>
<!-- THIS TAG STRING CAN NOT BE CHANGED -->
</titlebar>
<From here again normal standard stylesheet attributs. >
<Content backgroung=white>
BASDFKLJSDFL AJFDFJ L
</CONTENT>
Any ideas?
If you wrap your title bar in a div, you can redefine the links for that div in your stylesheet:
#divName a:link {...}
#divName a:visited {...}
#divName a:hover {...}
#divName a:active {...}
So, any links within the div (id="divName") will use the styles that you outline using the rules above. All other links will use your default anchor styling.
HTH