• Resolved gizmoku

    (@gizmoku)


    Hi there!

    I’d like to change the background color of the main body and also the secondary sidebar. How can I do that? Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    Hi!

    To change the gray background, use:

    
    .main { background-color: #fff !important; }
    

    To change the secondary sidebar, you need to edit the sidebar image backgrounds in /img/sidebar/ folder of the theme. Or you can do:

    
    .s2 { background: red; }
    

    And it will fill up the sidebar with that color but not stretch all the way down, if there is no content in the sidebar.

    Thread Starter gizmoku

    (@gizmoku)

    thanks! will try to tweak it

    Thread Starter gizmoku

    (@gizmoku)

    I’m lost haha, I’m trying to locate this

    .main { background-color: #fff !important; }

    but I can’t find it, which folder is this one in?

    Theme Author Alexander Agnarson

    (@alxmedia)

    Hm, those are in no folders. That is custom CSS: Try to add it in:

    Customize > Additional CSS > Add the code here.

    So for example, lets say you want the content background to be red, then you would add:

    
    .main { background-color: red!important; }
    

    And to make the sidebar green, try adding:

    
    
    .s2 { background: green; }
    

    Or toghether in the additional css field:

    
    .main { background-color: red!important; }
    .s2 { background: green; }
    

    (Just ugly color examples where you can use hex colors instead)

    Thread Starter gizmoku

    (@gizmoku)

    Oh I got it! thanks!

    Theme Author Alexander Agnarson

    (@alxmedia)

    To change colors such as accent color of the theme go to:

    Customize > Theme Options > Styling. There you can pick font as well etc.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change Background Color’ is closed to new replies.