Support » Theme: Hueman » Cannot See Footer Information

  • Resolved beat_wettstein

    (@beat_wettstein)


    Hi, I cannot see the Footer Credit Text when I activate the Child Theme. When viewing the source I can see that the information is in the source. I think the problem is that the footer background is white. The theme settings however say that it should be #26272b. I have made a change to the style.css: .sidebar { background-color: #ffffff !important; } however, even when removing this line of code, the footer background remains white.
    The url is http://www.learnbassfast.com.
    Any ideas would be highly appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)
  • the CSS class .sidebar is not involved in the footer styles.

    the background is set to white via this style:

    #page .container-inner { background: #fff;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    box-shadow: 0 1px 1px rgba(0,0,0,0.1); }

    which seems to overcover any background color that might be set in the theme options …

    using a browser inspection tool you could find out that this is how the text color for the footer information is set in style.css of te theme:

    #footer-bottom #copyright,
    #footer-bottom #credit { color: #fff; color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.5em; }

    you can overwrite the font color by adding something like this into the custom CSS:

    #footer-bottom #copyright,
    #footer-bottom #credit { color: red; }
    Thread Starter beat_wettstein

    (@beat_wettstein)

    Hi Michael, thanks for your reply. It is funny, all is back to normal. I uninstalled and re-installed Being Hueman theme and the footer background became responsive again. I am however using your code suggestion as I like the footer to be white and therefore I want to change the color of the font.
    Unfortunately the ‘WordPress’ and ‘Alx’ credits are not showing black. I could just switch them off but it would be nice to show them. Could you please tell me how to change the color for them?
    By the way, I tried looking with a browser inspection tool – however, all I can find is ‘credit’ and then links with Anchor Text WordPress and Alx. Do not know how to change the color of those in child style sheet.
    Thanks, Beat

    Hi Beat. You should be able to change the link color to black using this:

    #footer-bottom #credit a { color: #000; }
    Thread Starter beat_wettstein

    (@beat_wettstein)

    Hi bdbrown,
    thanks for this. It works a treat. I am truly amazed about the versatility of the Hueman theme.
    Cheers,
    Beat

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Cannot See Footer Information’ is closed to new replies.