Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1419320

    josephd199
    Participant

    URL: http://www.continuummedsolutions.co/
    X – Child Theme: Version 1.0.0
    X Theme: Version 4.6.4
    Cornerstone: Version 1.3.3

    I went to “Customize” under “Appearance” in the Dashboard. I then selected “Footer”, I chose “On” for Footer Menu, Footer Social, and Footer Content. However, I could not see my footer content or any social icons.

    I then did a little research, and someone said to add some code to the “Additional CSS” section in the Customization area. I added: .x-colophon-content {
    color: #63B9D6 !important;
    }

    My text is showing now, but is there a way to get the text to show, and change colors or text size without have to add code? I am using WordPress because I don’t know how to do code. I have used other themes, and I did not have to do anything special to have the footer show. I was hoping I could do the same with this theme.

    #1419431

    Jade
    Moderator

    HI there,

    This code in the customizer is setting the color of the footer texts to white:

    .x-colophon.bottom, .x-colophon.bottom a, .x-colophon.bottom .x-social-global a {
        color: #ffffff;
    }

    Kindly remove it or update it to:

    .x-colophon.bottom, .x-colophon.bottom a, 
    .x-colophon.bottom .x-social-global a {
        color: #f1ba63;
    }

    Hope this helps.