In the styles forum I asked a question about specific 'a' links. As you know it's a way of getting a different 'a' link styling for specific elements in the phpBB html template where someone wants it.
Example:
Code: Select all
a.class1 {color:#000;}
a.class1:link {text-decoration: none; color:#000;}
a.class1:visited {text-decoration: none; color:#000;}
a.class1:hover {text-decoration: underline; color: blue;}
a.class1:active {text-decoration: none; color:#000;}
<a href="http://www.google.com" class="class1">Google</a>
The following image shows where I want to modify the particular link in your template:

As indicated, if I can change the second title's color and hover color then I can change the background. If I change the background and don't change the title's color/hover then it's going to be nearly invisble.
I tried looking on the viewtopic template as to where this second title would be. I think I found the section:
Code: Select all
<!-- BEGIN postrow -->
<!-- EVENT viewtopic_body_postrow_post_before -->
<!-- IF postrow.S_FIRST_UNREAD -->
<a id="unread" class="anchor"<!-- IF S_UNREAD_VIEW --> data-url="{postrow.U_MINI_POST}"<!-- ENDIF -->></a>
<!-- ENDIF -->
<div id="p{postrow.POST_ID}" class="post has-profile <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_POST_DELETED --> deleted<!-- ENDIF --><!-- IF postrow.S_ONLINE and not postrow.S_POST_HIDDEN --> online<!-- ENDIF --><!-- IF postrow.POSTER_WARNINGS --> warned<!-- ENDIF -->">
<a id="unread" class="anchor"<!-- IF S_UNREAD_VIEW --> data-url="{postrow.U_MINI_POST}"<!-- ENDIF -->></a>
You can see right away where using the specific linking would be a problem since the link already has a "class".
Anyway, I think that's the link to change but since you know your own style maybe it's somewhere else altogether. But I think you get the picture for what I'm trying to do.

Thanks
Daniel