I like the way Sniper_E has colored the Rank text on the Sniperblue style here at STG
I searched but couldn't find out how he did this.
I figured out that it had to be something with usercolor.
And here it is.
Open styles/prosilver/template/viewtopic_body.html
Find:
- Code: Select all
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd>{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
Inline find:
- Code: Select all
{postrow.RANK_TITLE}
Replace with:
- Code: Select all
<b class="postauthor"<!-- IF postrow.POST_AUTHOR_COLOUR --> style="font-size:12px; color: {postrow.POST_AUTHOR_COLOUR}" <!-- ENDIF -->>{postrow.RANK_TITLE}</b>
Open styles/subsilver2/template/viewtopic_body.html
Find:
- Code: Select all
<td class="postdetails">{postrow.RANK_TITLE}</td>
Replace with:
- Code: Select all
<td class="postdetails"><b class="postauthor"<!-- IF postrow.POST_AUTHOR_COLOUR --> style="font-size:12px; color: {postrow.POST_AUTHOR_COLOUR}" <!-- ENDIF -->>{postrow.RANK_TITLE}</b></td>
About the:
- Code: Select all
font-size:12px;
You can increase, decrease or remove this if You want.













I had to search to fine what i change to change the colours, so maybe you could explain this in your post, so people without as much PHPBB3 knoledge can find it. Thanks Dan. (First post tehe)



