I have ad areas on obituaries.php in the sidebar...
And on obituaries_list.html:
The problem Im having is when I add the ads to page view they seem to multiply in list view page....Where I should only have 3 ads showing on list view page it seems it adds all the ads from page view onto listview as well.....How can I fix this?
- Code: Select all
<div class="sidebar-add-place"> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd19_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A> </div> </section> <!-- /#sidebar-older-post --> <section id="sidebar-entertainment-post"> <div class="sidebar-add-place"> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd20_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A> </div> </section> <!-- /#sidebar-entertainment-post --> <section id="ccr-sidebar-add-place"> <div class="sidebar-add-place"> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd21_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A> </div>
And on obituaries_list.html:
- Code: Select all
<div class="sidebar-add-place"> <cms:pages masterpage='obituaries.php'> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd19_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A></cms:pages > </div> </section> <!-- /#sidebar-older-post --> <section id="sidebar-entertainment-post"> <div class="sidebar-add-place"> <cms:pages masterpage='obituaries.php'> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd20_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A></cms:pages > </div> </section> <!-- /#sidebar-entertainment-post --> <section id="ccr-sidebar-add-place"> <div class="sidebar-add-place"> <cms:pages masterpage='obituaries.php'> <A HREF="www.marioncountynews.net/yourpage.html"> <IMG SRC="<cms:show sidebarAd21_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT=""> </A></cms:pages > </div>
The problem Im having is when I add the ads to page view they seem to multiply in list view page....Where I should only have 3 ads showing on list view page it seems it adds all the ads from page view onto listview as well.....How can I fix this?