My site, www.whatsthatbug.com, is a wordpress blog. I have combed through all of the CSS, and I cannot figure out how to get rid of the extra space on the left side of the page. Any suggestions would be most welcome.
+2
A:
Here's your problem:
body div#wrapper {
margin: 1em 0px 0px 7em;
}
Your wrapper has a left margin of 7em. Try the code below:
body div#wrapper {
margin: 1em 0px 0px 0px;
}
advait
2010-07-16 23:18:59
I apologize to everyone for the sloppy way I asked the question. I had forgotten that all of my html and css is minified now, and thus unfriendly to read.I had a blind spot - the div#wrapper tag was being overridden in functions.php. I changed it there, and it aligns properly now.Thank you for your assistance!
Daniel Jacobs
2010-07-16 23:48:15
A:
You have body div#wrapper{margin : 1em 0 0 7em}
. The 7em is assigning a left margin to the page is #wrapper is the encompassing div.
Joey C.
2010-07-16 23:19:28
+1
A:
thethimble is right: it's the 7em left margin on #wrapper.
How to find this yourself: get Firebug, then you can hover over elements and see their attributes. In the CSS tab, you'll be able to edit CSS values live and see their effect on the page.
Ned Batchelder
2010-07-16 23:20:46