Quote:
Originally Posted by scoobie
I put the following code into my css file:-
.content_position {
margin-left:70px;
margin-top:50px;
}
|
Try adding padding to your css. Example:
Code:
padding: 0 0 0 70px;
The order for the values are: top right bottom left. I used a value of 70 for the left as that's what you used above.
Jason