• How can I change Footer “PAGES’ Text Color

    Currently all of the text is white except for the pages list in the far right corner.

    This text color matches the color on the menu bar.

    Can you please point me in the direction of this css code so I can adjust.

    Also the code to change the font color for the other widget titles might be useful.

    Thanks
    http://www.psclairerees.co.uk/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    To change the color of all the headings in footer area, you just need to paste the code given below in Custom CSS section of your dashboard.

    `.footer-container h4 {
    color: red !important;
    }

    To change the paragraph text color, code is given below

    .footer-container .textwidget {
    color: blue !important;
    }`
    Note: Change color as per your requirement.

    Thanks!

    Thread Starter magfilm

    (@magfilm)

    Thanks

    That code is useful for text in widget 1, 2 & 3 but Widget four is currently set to display pages. It is the paragraph text below the header ‘PAGES’

    Please take another look – and mouse over area below the header — you will see the ‘page links’ appear in black. They are currently the same text color as the menu so invisible blue on blue until moused over. I want to make them white to match the rest of the paragraph text in the footer container.

    http://www.psclairerees.co.uk/

    I can slug in html links there if necessary but just thought you might know where that bit of code is hiding! 😉
    Thanks!

    Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    Use below code, it will work for you.

    .footer-container a {
        color: white !important;
    }
    .footer-container a:hover {
        color: red !important;
    }

    Hope it will resolve your issue

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can I change Footer "PAGES' Text Color’ is closed to new replies.