• I have another quick question I cannot figure out. I want to either remove the sidebar or change the color of the sidebar that comes standard in Kubrick with WP 1.5 where can I find the code specifically for that?

Viewing 1 replies (of 1 total)
  • find styles.css located in the folder located at content > themes > default

    look for this:


    #sidebar
    {
    padding: 20px 0 10px 0;
    margin-left: 545px;
    width: 190px;
    }

    you can add a background color, using a word like ‘red’ or a hexidecimal color like below:


    #sidebar
    {
    padding: 20px 0 10px 0;
    margin-left: 545px;
    width: 190px;
    background: #FFCC33;
    }

    i just tested this, and i notice the text goes all the way to the edge. you may want to add left and right padding, (even just 5px would do) like this:


    #sidebar
    {
    padding: 20px 5px 10px 5px;
    margin-left: 545px;
    width: 190px;
    background: #FFCC33;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Sidebar in Kubrick’ is closed to new replies.