
ChetW
Staff

Jul 26, 2006, 11:54 AM
Post #6 of 7
(5357 views)
Shortcut
|
|
Re: [fleff] More space between image and text
[In reply to]
|
Can't Post
|
|
Hi Farnham, Thanks for the update, One thing you could do is drilldown the image padding using your CSS file. To do this follow the steps below: -Find this section of code:
<table border=0 cellspacing=0 cellpadding=0 width="550"> <tr> <td class="black"> <span style="padding-right: 10px;">$image$</span>$content$<br> </td></tr></table> and replace it with this:
<table border=0 cellspacing=0 cellpadding=0 width="550"> <tr> <td class="black"> <span>$image$</span>$content$<br> </td></tr></table> Notice that I have removed the embedded style attribute from inside the <span> tag. - Next you will want to open your CSS file and find the ".black" class. Underneath this style add the following style information:
.black img { padding-right: 10px; } This change basically drills down to any images (img) that are inside the ".black" class and gives the image a 10 pixel padding on the right side. Give this a try Farnham and see how it works for you! Also if have any other quetions feel free to ask. Cheers, Chet Woodside - Product Specialist support@interactivetools.com [hr][i][url "http://www.interactivetools.com/consulting/"][b]Hire me![/b][/url] Save time by getting our experts to help with your project. Template changes, advanced features, full integration, whatever you need. Whether you need one hour or fifty, get it done fast with [url "http://www.interactivetools.com/consulting/"][b]Priority Consulting[/b][/url].[/i]
|