• Resolved moozastyle

    (@moozastyle)


    Hi there,

    how is it possible to change the colors of the Navigation, the Sidebar, Footer etc. ?

    In general, i want to give the page a lighter color. Replace all the black stuff, e.g. in the top navigation or the footer, with light blue or something like that.

    Along with the replacement of the black color i would have to replace all the red colored things too. Is there a possibility to change all these colors?

    Thank you

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi yes it’s possible to change all that! Go to theme options in the dashboard and go to tools. In the custom css box put this (replace the #666666 with the color you want) this will change all the black colors

    .top-header-block {
    background: #666666;
    }

    .header-wrapper #site-navigation {
    background: #666666;
    }

    .header-wrapper .menu li {
    background: url(images/menu-bg.png) repeat-y scroll right top #666666;
    }

    .site-footer {
    background: #666666;
    }

    .footer-wrapper {
    background: #666666;
    }

    For the red color, that’s a bit more complicated because some red things are images (link the left and right arrow on homepage) and some red things are inside the widgets…

    thanks you Cindy… goob job!!!

    regards

    Jose

    Theme Author Rigorous Themes

    (@wpgaint)

    Thanks for solving problem Cindy Vriend

    Is it possible to change the colour of the body on the home-page and posts/page from white to another colour?

    I don’t understand what you mean change it from white did you already customize it as in my theme its black.. but anyway if you want to change the body color just put this in your custom css box (theme options >> tools)

    body {
    color: #000000;
    }

    (change the #000000 to whatever color you need)

    Thanks Cindy – I input that code but the main page is still white. I want the main page, where all the copy is input, to be black, not white. Does that clarify?

    Here’s the site: https://www.silenttoronto.com

    Thanks.

    If you mean to change the white background on your homepage to black put this in the custom css:

    .wrapper {
    background: #000000;
    }

    then of course you have to change the color of your text to something else then black ??

    … and how might I do that? ?? Thanks in advance, you’ve been very helpful!

    .wrapper {
    background: #000000;
    }

    body {
    color: #FFFFFF;
    }

    this will change your background to black and your text to white.. If you want other colors just change the #000000 or/and #FFFFFF to the colors you want

    Thanks again!

    https://www.ethiopiaprosperous.com/ how is it possible to change Navigation strit pls

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Change colors of Navigation, Sidebar, Footer etc.’ is closed to new replies.