Take out the background from the wrap in you theme style sheet. You can copy this code to replace the first two styles:
body {
font-size: 10pt;
font-family: georgia,times,'times new roman', serif;
background: #713600;
color: #303324;
text-align: left;
margin: 0;
padding: 0;
line-height: 140%;
}
#wrap {
padding: 0 5px;
clear: both;
width: 960px;
margin: 0 auto;
}
Thread Starter
kpita
(@kpita)
That didn’t seem to work. In fact it made nearly everything go goofy.
well then, you didnt edit your style.css properly, because what he/she gave you was the correct advice and there is only ONE change from what you have now.
Here it again, with one minor change to set the color.
body {
font-size: 10pt;
font-family: georgia,times,'times new roman', serif;
background: #713600;
color: #303324;
text-align: left;
margin: 0;
padding: 0;
line-height: 140%;
}
#wrap {
padding: 0 5px;
clear: both;
width: 960px;
margin: 0 auto;
background: #fff;
}
the background: #fff; bit sets the color to white so that it doesnt blend with the brown.
Thread Starter
kpita
(@kpita)
Thank you. That works for fixing the wrap issue but it makes the middle smaller sidebar disappear. What am I doing wrong?
Thread Starter
kpita
(@kpita)
Ahhhh, why didn’t I check the image first?! Thank you. Just replaced that image. Thank you.