Hi all,
on my home site there are bestseller & new items to see, I do not want to show it.
How can I disable these for mobile version?
Regards,
Hi @smartgrafik
Look, generally in responsive theme functionality are not disabled, you need to just hide that part using the css property "display:none" in the particular resolution.
Hi,
in which CSS can I find this code?
Goto magento root directory root/skin/frontend/My_Package/My_Theme/css/styles.css.
Edit styles.css file add the below code. Enter the media query size which you require to display none in provided below format.
Add your css in media section.
@media only screen and (max-width: 360px) { /* media query section */ .widget.widget-new-products { display: none; } /* Display none CSS */ }
Let me know if you have any further query/concern for the same.