1. 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?

Discussion in 'Showcase Support' started by viper357, Mar 11, 2016.

  1. viper357

    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
     
  2. Bob

    Bob Developer Staff Member

    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: Mar 11, 2016
    viper357 likes this.
  3. viper357

    viper357 New Member CAS Premium SC Premium

    Thank you, worked perfectly.:)
     
    Bob likes this.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.