*

bobyrou

  • ****
  • 109 posts
Mobile friendly
« on: February 26, 2016, 03:26:38 PM »
Your theme is awesome, really happy customer!

Can you please advise how can I hide below when visitors are browsing from mobile phones:
- Middle page: Hot listings
- Footer: Categories, Information, Share Us

Also how can I show only last ONE ad in LATEST LISTINGS when visitors are browsing from mobile phones?

Thanks any help is really appreciated!!

Marked as best answer by bobyrou on March 06, 2016, 12:26:20 AM
*

MB Themes

Re: Mobile friendly
« Reply #1 on: February 26, 2016, 05:57:21 PM »
@bobyrou
1) For styling use Google Chrome and on page press f12 to identify IDs or classes of your elements, then you only add code to responsive.css into appropriate section (defined by screen resolution) code:
Code: [Select]
#selector_id {display:none!important;}or
Code: [Select]
.selector_class {display:none!important;}
2) Also only via CSS as osclass does not provide variables for responsive view and it is probably even not possible.
Again in responsive.css in approrpriate section:
Code: [Select]
#latest.white .simple-prod {display:none;}
#latest.white .simple-prod.o1 {display:block;}
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

bobyrou

  • ****
  • 109 posts
Re: Mobile friendly
« Reply #2 on: March 06, 2016, 12:26:35 AM »
Thanks again for your help!!