Quote:
Originally Posted by amorosso
Thank you so much, but I do feel dumb for asking now.. Anyway, my site is geared more for just displaying adds. With no money like. More like a craigslist site. Is there a way to remove all that jazz..
|
admincp - styles and templates - yourstyle - microclassifieds - microclassifieds_main
find
Code:
<table width="100%" cellspacing="0" cellpadding="0" style="border-bottom:1px solid {vb:raw vboptions.microclassifieds_normal_border};">
<tr>
<td><img border="0" src="microclassifieds/images/scroller.png"></td>
<td width="100%">
<marquee scrollamount="{vb:var vboptions.microclassifieds_marquee_speed}" onmouseover="this.scrollAmount=0" onmouseout="this.scrollAmount={vb:var vboptions.microclassifieds_marquee_speed}">
{vb:raw marquee}
</marquee>
</td>
</tr>
</table>
replace with
Code:
<div id="hidden" style="display:none;">
<table width="100%" cellspacing="0" cellpadding="0" style="border-bottom:1px solid {vb:raw vboptions.microclassifieds_normal_border};">
<tr>
<td><img border="0" src="microclassifieds/images/scroller.png"></td>
<td width="100%">
<marquee scrollamount="{vb:var vboptions.microclassifieds_marquee_speed}" onmouseover="this.scrollAmount=0" onmouseout="this.scrollAmount={vb:var vboptions.microclassifieds_marquee_speed}">
{vb:raw marquee}
</marquee>
</td>
</tr>
</table>
</div>
find
Code:
<vb:if condition="$premium_items">
{vb:raw premium_items}
</vb:if>
replace with
Code:
<vb:if condition="$premium_items">
<div id="hidden" style="display:none;">
{vb:raw premium_items}
</div>
</vb:if>
Note that this does not remove the content, it only hides it.
If you are sure you don't need it you can remove the quoted code from the template.