Responsive WordPress Theme – Caliber

A theme with simple controls and limitless potential. Work fast and build an amazing website!   Find out more »

UpThemes – Beautiful WordPress Themes

Create a site your church, gallery, newspaper, blog, recipes, band and more!   See the themes »

Need a little help?  Find answers quickly by searching the forum.
Group Admins
  • jeffw
  • ljungi
  • maxleondalheimer
  • admin
Group Mods
  • malekovitch

Support for: Vellum – Responsive WordPress Theme

Vellum

Public Group  |  active 1 month ago ago
Viewing post 1 to 5 (5 total posts)

Custom CSS for footer link and hover states

  • getbold

    said

    Hello!
    I am trying to edit my footer adding a sub navigation bar and I need the hover states to be different than the default ones.
    See footer: http://s89.617.myftpupload.com/practice-areas/

    So I added custom CSS like this: (screenshot: https://prnt.sc/mpyxc6)
    #Bottom a { color: lightgray }
    #Bottom a:hover { color: FloralWhite }

    This worked for the navigation bar… but it also changed EVERY hover state in the whole bottom section. It is also applying to my buttons as well.

    I tried adding a “class name” to my chunk where I want the custom CSS to go (Screenshot: https://prnt.sc/mpyvew) …. and replaced the above CSS with:
    #subnav a { color: lightgray }
    #subnav a:hover { color: FloralWhite }

    but that feature won’t work…. Am I missing a step?

    Any suggestions?
    Thank you!

  • jeffw

    said

    Please try to keep in mind that we can’t teach you CSS in this forum, we can help only with issues that are directly related to the theme.

    The problem with the second bit of custom CSS you added…

    #subnav a { color: lightgray }
    #subnav a:hover { color: FloralWhite }

    …is that you added a subnav class, but you are targeting it in your CSS as an ID with a hash instead of a class with a dot.

    If it was me, I would add custom CSS like this to target the links in that subnav container…

    #FooterTop .subnav a { color: HotPink }
    #FooterTop .subnav a:hover { color: DodgerBlue }

         

  • jeffw

    said

    I’m glad you have got your custom CSS working now.

    Please try to keep in mind that we can’t teach you CSS in this forum, we can help only with issues that are directly related to the theme.

Viewing post 1 to 5 (5 total posts)