silentkv
Member
Posted 7 years ago #
Hi does anyone know why sometimes I get spaced apart words in my post? It's not all times and sometimes it's in the titles and/or body. my blog is "www.kennyvelez.com/blog".
By the way, if I upgrade to 2.0 will it keep all the mods I've done to the template?
It looks like it might be a
text-align: justified;
issue in your stylesheet. Possibly in a class that would deal with 'entries' or 'content'.
Oops - serves me right for posting at 4 am.
The correct term should be 'justify' not 'justified'.
Try replacing:
.post {
padding: 10px 10px 10px 10px;
margin: 0 0 40px;
text-align: justify;
border: 2px solid #000;
}
with this:
.post {
padding: 10px 10px 10px 10px;
margin: 0 0 40px;
text-align: left;
border: 2px solid #000;
}
Kat, the Twat
silentkv
Member
Posted 7 years ago #
Thank you very much Kat the Twat.
My pleasure!
If this resolved the issue I'd suggest changing the status of the thread to resolved :)
Kat, the Twat