You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

How do I replace vspace and hspace?

UserPost

12:30 pm
May 22, 2010


incliner

Lake Tahoe, Nevada

Member

posts 12

1

I'm not very hep at this but can you give me a detailed way to get some space between an image and text?

Site is http://www.memory-foam-mattress-store.com and the image is in a Text Widget on the Sidebar_top

 

Thanks again for a great theme.

10:21 am
May 30, 2010


Ryan

Admin

posts 1523

2

You just need to add some inline CSS to the image to create some margin around it.  So something like this:

<img src="…" style="margin: 10px 10px 10px 0px;" />

This will put 10 pixels (in order of code) top right bottom, and 0px on the left since the image is on the left side of the text.