Click to See Complete Forum and Search --> : Having trouble with text margins


formated4tv
11-25-2007, 09:28 AM
http://www.tjmartin.net/jim/services.html
http://www.tjmartin.net/jim/default.css


I'm working on this site (I've posted about it before), and noticed that the text on both sides of the content column is on the edges of the column. Is there any way I can change the margins to make the text move in a little farther, or would I just change the background images to make it "appear" like there's more room.

Centauri
11-25-2007, 09:34 AM
Just add additional padding to the sides, and subtract the extra from the width :#content {
float: right;
width: 680px;
background: url(images/img09.gif) no-repeat;
padding-top: 13px;
padding-right: 21px;
padding-bottom: 0;
padding-left: 15px;
}

formated4tv
11-25-2007, 09:53 AM
Thank you