• Resolved Akshay nassa

    (@deadlywater96)


    hello,
    my site http://www.knowingreal.com

    i can change color of header, content and side bar to white but how to make the whole portion or column to white.

    when i used firebug on that portion, it showed the name fix.after and when i added background property to white, it made all the background of site to white but i just want the column containing all the material to be white.

    how to do that, this is the only barrier for me to get started now…

    thanks in advance….fingers crossed

Viewing 8 replies - 1 through 8 (of 8 total)
  • I find these in your CSS

    body {
        color: #FFFFFF;
    }

    and

    body {
        background-color: #000000;
    }

    Try using only

    body {
        background-color: #FFFFFF;
    }
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add background-color: #fff to the following div:
    <div class="content">

    Thread Starter Akshay nassa

    (@deadlywater96)

    sorry @krishna that is not working

    @anevins, please can you explain where i will find that….in css

    you seem to have found what to edit to get a solid white central column background;
    the suggestion by @anevins was right to add the background color to the style of .content

    check your site in a few different browsers, and if your problem is sorted, please tick this topic off as ‘resolved’.

    Thread Starter Akshay nassa

    (@deadlywater96)

    i tried and added background-color to my layout in css

    /* @ Site Layout */
    
    	#site { position: relative; }
    	#wrapper { padding-bottom: auto; }
    	.content { width: 960px; background-color: #fff; margin: 0px auto 0; }

    but the box is coming inside the footer, i want it to increase automatically with the content and sidebars,

    to keep the footer in its original color, try to remove this background-color: #fff; from the .content style, and add these new styles:

    #pagelines_content{background:#fff;}
    #header .content{background:#fff;}
    Thread Starter Akshay nassa

    (@deadlywater96)

    thank you so much you all, god bless you….

    i am ready to start now…..
    @alchymyth…can i get your email address… 🙂

    glad to see it working;
    you are welcome 😉

    just add @gmail.com after my username …

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘how to have everything under one white coloumn’ is closed to new replies.