• how can i change the footer color on https://www.mmatraininggear.net

    I’m assuming the change needs to be made on the style.css sheet but I can’t find the html color code to alter. I want to change it to a shade of grey maybe like #424242?

    Can anyone help?

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • I saw that you tried to modify the color of the footer background in your theme’s style.css. Thing is, another style from within the theme is overriding your own. Check if your theme has Theme Options page where you might be able to insert code. Other than that, the theme is a premium paid theme, contact theme author who should provide some free support to get the theme going.

    I think you should look for a css style in the footer.php of your file. The css might be directly on the #footer div. check for a line background: none repeat scroll 0 0 #32527A;. The #32527A is the color of the background now. Look somewhere at line 17 of the file.

    Valentin

    all you need to modify is in your style.css file.

    #footer {
    background: none repeat scroll 0 0 #32527A;
    }

    The reason why any code (footer background e.g.) placed in style.css is not showing up is becaused by hard-coded styles (footer background( rendered in header.php of the theme, hard-coded style in <head> or style enqueued via wp_head.

    Thread Starter jdtate51

    (@jdtate51)

    hello, i was able to figure out a fix through the theme’s configuration panel. I tried all of the solutions and provided and I couldn’t get them to work. After a long time googling, I found the answer by the theme’s author.

    thanks so much for providing comments and help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how can i change the color of my footer’ is closed to new replies.