I just upgraded from vb3.8 to 4.1.7 Patch level 2 and noticed that there is a small error in instructions:
Quote:
Find in footer template (top of footer template):
HTML Code:
{vb:raw ad_location.ad_footer_start}
Add above:
HTML Code:
{vb:raw ss_rightcolumn_end}
|
As the footer is now:
Quote:
<vb:if condition="!empty($ad_location['ad_footer_start']) or !empty($ad_location['global_above_footer'])">
<div style="clear: {vb:stylevar left}">
{vb:raw ad_location.ad_footer_start}
{vb:raw ad_location.global_above_footer}
</div>
</vb:if>
<div id="footer" class="floatcontainer footer">
|
.. you have to add that {vb:raw ss_rightcolumn_end}
above <div id="footer" class="floatcontainer footer">
because otherwise it is inside that if-clause and it won't work if you don't have an ad on footer.
One question: How to center title and content?