I need to move the compare products section to the footer or at least further down from where its at on the right side.
Google so far hasn't yielded any results...
Any help would be appreciated.
You need to move the compare product static block to where you want to place it.
I'm not quite sure how to do that.....
Could maybe be done like this in the rvd theme:In catalog.xml file.
Find this:
<reference name="right">
<block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
<!--<block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml">-->
<!--<action method="setImgSrc"><src>images/media/col_right_callout.jpg</src></action>-->
<!--<action method="setImgAlt" translate="alt" module="catalog"><alt>Keep your eyes open for our special Back to School items and save A LOT!</alt></action>-->
<!--</block>-->
</reference>
Change is to this:
<reference name="footer">
<block type="catalog/product_compare_sidebar" name="catalog.compare.footer" template="catalog/product/compare/sidebar.phtml"/>
</reference>
You should be able to add this to your local.xml file as well, this way you don't edit core files.
Let me know if this helps :0)