TheLastSuperman |
09-01-2013 04:05 PM |
Quote:
Originally Posted by LgsOfChampions
(Post 2442367)
Installed!! thanks,
Quick question - is there a way to change the font color for style 1? I have the same back ground color as the font and would like to darkening the font a little?
|
Hmm apparenty there is an issue with the css from ranks_css.css running properly I just confirmed that so look for a fix on the next version.
To sort the issue your having simply paste this in additional.css template:
Code:
/* Rank System CSS Start */
/* Style 1 */
.ranks_fieldset {
padding-left: 4px;
border: 1px solid rgb(15, 16, 19);
color:#FF0000 !important;
}
.ranks_fieldset a {
color:#FF0000 !important;
}
.ranks_fieldset a:hover {
color:#FF4400 !important;
}
*However you don't need to add all of those i.e.
- ranks_fieldset simply changes normal fonts within to red (#FF0000) for example the colons and the counts : 1
- ranks_fieldset a changes the links to whatever colors you want. ranks_fieldset a:hover compliments the previous making the hover effect show a new color now as well.
|