• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Having issues with a wordpress theme

Terabyte

Diamond Member
I hope this is the right forum. Didn't see anywhere else to put it.

My blog is @ http://www.sofakingtasty.com

I'm trying to move the line or whatever it is 50 pixels to the right. See the picture below.

line.JPG


I can't tell if it's a background picture, a line, or? Please help 🙂
 
How hard is it to throw in some HTML? That looks like you need a div with a width to rap around your text. (I'm no familiar with how wordpress works.)
 
At a guess I would say that line is part of the background image for the content div (they are probably tiling it top to bottom), and would be set in the style for that div. It looks to me like you modded the theme to widen the content div, and now it doesn't line up with the background. Either that or it's not that great a theme 🙂.
 
The place you are looking for is here

PHP:
#content {
	float: left;
	width: 530px;
	padding: 20px;
}

Drop the width down to about 490 to get the effect you are looking for.
 
Back
Top