Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @tronquini,

    sorry for the late reply!

    Changing the color of the footer gray bar font will require adding some CSS. This is best done by either creating a child theme or using a custom CSS plugin to ensure you don’t lose you changes when you install a theme update in the future. I recommend SiteOrigin’s CSS editor – https://ww.wp.xz.cn/plugins/so-css/

    Once you’ve installed that go to Appearance > Customs CSS and use the following CSS to change the color of the footer gray bar font:

    .site-footer-bottom-bar {
      color: #FFFFFF;
    }
    
    .site-footer-bottom-bar a {
      color: #dd3333;
    }
    
    .site-footer-bottom-bar a:hover {
      color: #1e73be;
    }

    That will change the color of the text, links and link rollovers respectively.

    Hope this helps!

    Hi Peter,

    I have a related question – how do I change the color of the bar itself? I’d like it to match the blue-gray of the tabs…

    My client’s site is in Sandbox mode, so it’s not accessible right now, but I’ve stayed with the original palette.

    Thanks!
    Phila

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Footer Gray Bar’ is closed to new replies.