• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Which CSS?

viper357

New Member
CAS Premium
SC Premium
Hi Bob

Can you tell me which css template I would need to edit in order to change the font colour of these two arrowed items please? Thanks. :)

screenshot-www marineaquariumsa com 2016-03-11 20-51-24.jpg
 
Both of those are CORE XENFORO CSS classes.

the title uses the core class
HTML:
a:link, a:visited

so you will have to over ride that with something like this...
HTML:
.showcaseListItem .main .title a:link,
.showcaseListItem .main .title a:visited
{
color: #176093;
}

The 2nd one is HTML output by the core xenforo date helper. You MIGHT be able to use the same trick above (replace a.link with .faint a
HTML:
body .faint, body a.faint, body .faint a {
    color: #c8c8c8;
}
 
Last edited:
Back
Top