Having issues with a wordpress theme

Terabyte

Diamond Member
Dec 19, 1999
3,875
0
71
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 :)
 

Cogman

Lifer
Sep 19, 2000
10,284
138
106
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.)
 

Markbnj

Elite Member <br>Moderator Emeritus
Moderator
Sep 16, 2005
15,682
14
81
www.markbetz.net
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 :).
 

Cogman

Lifer
Sep 19, 2000
10,284
138
106
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.