View Single Post
  #5 (permalink)  
Old Aug 15th, 2007, 14:49
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: please help on css layout

Quote:
Originally Posted by moojoo View Post
try chaning this

Code: Select all
p {
    padding: 0 0 1.4em;
    font: 1em/1.4em arial,sans-serif;
    text-indent: 0;
}
to

Code: Select all
p {
    padding: 0 0 1.4em 140px;
    font: 1em/1.4em arial,sans-serif;
    text-indent: 0;
}
currently you only have the padding set to top, right, bottom.

Cheers.
Or top, left/right, bottom

When only 3 values are given for the margin and padding properties is assigns them as TOP LEFT/RIGHT BOTTOM
Reply With Quote