Recent Topics

1 Dec 21, 2007 22:48    

My b2evolution Version: 1.10.x

My website is here: www.theelectricpulse.com

I widened the wrapper div by 100 pixels, and then widened the post section of the blog by 100 pixels. The problem is that there are two borders that obviously did not come along for the ride. I've looked at, and disabled, every right or left border in my styles.css file to no avail, so I'm assuming those borders are written in somewhere else. Anybody have an idea where I should look?

2 Dec 21, 2007 23:24

Here's a quick way, but just check it out before you commit to it.
in styles.css take out the background image...
Current:

div#wrapper {
	background: #fff url(img/bg_content.gif) repeat-y 0 0;
	width: 840px;
	margin: 0 auto;
	padding: 0;
}


Suggested:

div#wrapper {
	background: #fff ;
	width: 840px;
	margin: 0 auto;
	padding: 0;
}

3 Dec 22, 2007 00:06

Change the background image ;)

4 Dec 22, 2007 00:15

This worked perfect, thanks


Form is loading...