
Originally Posted by
debtag
Please look on
www.photographysisters.com
I would like to get rid of all the white background and make it black!
Also, I turned off the right side navigation box, but there is still a greyish box there! Please help!
Thanks!
The "greyish box" and white background isn't your only problem, you should view your site in more browsers then IE!
I suggest validating, and creating for FireFox as most other browsers will resimble what you see in the FireFox browser.
You've got a lot to fix before I'd worry about the white (some of the error's might actually point you to the right area for fixing the white spaces), check this out: http://jigsaw.w3.org/css-validator/v...hp%3Fmain_page << that link will show you all the errors that are in your CSS Code.
But here is your answer (I still suggest fixing your errors though)
Original Code:
Code:
.centerColumn {
width:75%;
float:left;
margin:0 2% 2% 3%;
text-align:left;
line-height:1.6em;
display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
}
Corrected Code Change to get rid of the white space in the center of your website:
Code:
.centerColumn {
background:#000000;
width:75%;
float:left;
margin:0 2% 2% 3%;
text-align:left;
line-height:1.6em;
display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
}
and then you need to change (this is near the top of your style sheet):
Code:
#navEZPagesTopWrapper{
background:#E9E9E9;
}
To:
Code:
#navEZPagesTopWrapper{
background:#000000;
}
This code change above gets rid of the white bar between your site name and your "pink" drop down menu.
I have changed the font color to Red to help you spot the changes I am suggesting for your fix.
Bookmarks