Recent Topics

1 Feb 11, 2009 16:05    

My b2evolution Version: Not Entered

This is completely driving me nuts and I can not figure out how to fix it or why it started doing it. The post titles are indenting about 5 spaces. They were fine up until about two days ago. The only thing I can think of is I went into the CSS to increase the size of the font a little but that was the only thing I changed. Does anyone have any idea what could have caused this and how I can fix it?

I would greatly appreciate any help!
Thanks

2 Feb 11, 2009 16:07

Can you post a link?

4 Feb 11, 2009 16:16

In style.css edit the title margin on line 198

h3.bTitle {
	margin: 0 1ex;
	color: #000000;
}


to

h3.bTitle {
	margin: 0 1ex 0 0;
	color: #000000;
}

Play with the last margin 0 to get exactly what you need

5 Feb 11, 2009 16:27

I moved the second zero in 1ex 0 0 all over the place and it didn't affect it at all. It is so strange because it is fine when the page first loads and then jumps when it is finished?

Any other ideas? I really appreciate this...Thank you!

6 Feb 11, 2009 17:16

Are you trying to remove the white space to merge blue title squares to the sides?

If so, edit the following

div.bTitle {
	clear: both;
	margin: 1ex 1ex 0 1ex;
	padding: 5px 0 4px 0;
	background-color:#06a3c4;
}


to

div.bTitle {
	clear: both;
	margin: 1ex 0 0 0;
	padding: 5px 0 4px 0;
	background-color:#06a3c4;
}


Form is loading...