cancel
Showing results for 
Search instead for 
Did you mean: 

Disable bestseller & new items on mobile version

Disable bestseller & new items on mobile version

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,

3 REPLIES 3

Re: Disable bestseller & new items on mobile version

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.

Was my answer helpful? You can Click Kudos/Accept As Solution.
200+ professional extensions for M1 & M2 with free lifetime updates!

Re: Disable bestseller & new items on mobile version

Hi,

 

in which CSS can I find this code?

Re: Disable bestseller & new items on mobile version

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.

 

Query solved? Accept as Solution.Thanks
Eric Baily