Click to See Complete Forum and Search --> : Text Spacing


comptech520
09-03-2008, 10:08 AM
Hello,

On this website: http://www.spektronstorage.com/newsite/

Please note the line spacing in the main body. How can I have the text moved closer together? I paid for this layout, so I didn't create it my self.

Thanks

ray326
09-03-2008, 01:07 PM
Adjust this in typography.css (line 10)

p {
line-height:1.8;
}

comptech520
09-03-2008, 01:35 PM
Thank you!

One last thing, If I wanted to justify the text in the main body where the two photos are, how would I do that?

ray326
09-04-2008, 12:22 PM
Try adding text-align:justify into that same style. If the selector's too broad then you'll have to create one specifically for the div in question.

comptech520
09-04-2008, 02:22 PM
I added the text-align justify to this line and it doesen't work. Any other ideas?


#content .txt {
background-color: #ffffff;
width: 725px;
text-align:justify;
padding: 0px;
margin: 0px;
background-image:url(../images/content-bck.gif);
background-repeat:repeat-y;
}

comptech520
09-04-2008, 03:34 PM
I added it to the body tag too, but still does not work.

ray326
09-04-2008, 10:37 PM
Put it in #content .leftCol {}.