I have the same issue in both RP and Classifieds:
How to add margin to this image
The method I am using to find where to modify code is not working. I have been saving the page in question locally, opening it in MS Expression, highlighting the area that needs fixing and then looking in source view for the code in question. I then look for the template that appears to be the correct one ( in the case of the margin issue I see cathead.tmpl is referenced. I then go ahead and modify cat head, in this instance by adding some ' to put some space between the text and the left edge. But after saving my changes my modifications are not reflected in the page output. I assume modifying the wrong file. Anybody know the correct way to find the correct template?
<OL class=floatcontainer><!--ReviewPost, Copyright All Enthusiast,Inc. REPLACEME -->
<LI class=forumbit_nopost>
<DIV class="forumhead foruminfo L1">
<FORM method=get action=http://mysite.com/reviews/showcat.php>
<TABLE class=tborder cellSpacing=1 cellPadding=2 width="100%">
<TBODY>
<TR>
<TD colSpan=4 align=left>
<TABLE border=0 cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR>
<TD align=left> need to put here <SPAN class=normal>
<A
href="http://rmbiker.com/reviews/index.php">Home</A> » <A
href="http://rmbiker.com/reviews/index.php?cat=1">Road - Bikes</A>
» <A href="http://rmbiker.com/reviews/showcat.php?cat=3">Road</A>
</SPAN></TD>
<TD align=right><!-- BEGIN TEMPLATE: searchbox.tmpl -->
Update -
I fixed the image margin issue by adding .alt1 {
padding-right: 5px;
padding-left: 0px;
margin-right: 3px;
margin-left: 3px;
}
to additional.css.
update 2
I fixed a big chunk of my formatting issues by adding more to additional.css
.normal {
margin-top: 5px;
margin-left: 5px;
}
.smallfont {
margin-right: 5px;
margin-left: 5px;
}
.forumtitle {
margin-right: 5px;
margin-left: 5px;
}