text formatting

iipeacefrog

New Member
Hello all. I am using a php script to retrieve my news updates from a mysql database, but the text will not wrap (it just keeps extending the page on one line) no matter what i seem to do to the css style of the div it's contained in. any tips? site: www.monkeyflower.tk
 

jnjc

New Member
You have set the whitespace to nowrap in your .css, this is why it won't wrap. There are a couple of problems with your .css but make the changes I have outlined below and it should get you on the right path. Remove the lines I have highlighted from your css.css file:

Code:
.content {
color:#000000;
font-family:"Times New Roman",Times,serif;
font-size:large;
font-style:italic;
font-variant:normal;
letter-spacing:0;
[B]line-height:0;
[/B]text-align:left;
[B]text-indent:10%;[/B]
vertical-align:baseline;
[B]white-space:nowrap;
[/B]width:600px;
word-spacing:0;
}


HTH,
JC
 
Top