How can I hide the sidebar on the product pages only?
im wondering this as well..
Delete this section from your "layout" html file. But make a backup when you do this in case it doesn't work.
Everything between
<div id="sidebar">
and this
</div><!-- end #sidebar -->
thanks a bunch!
Put this on the html page for products
<style> #sidebar { display: none; } </style>
@Soampd thanks that helped so much!