*

Marko

  • ***
  • 66 posts
Remove Quick view both desktop and mobile mode
« on: June 19, 2016, 04:40:51 PM »
Hi Michal,

May I know how to disable or remove the Quick view on desktop and mobile mode.
Thanks

*

MB Themes

Re: Remove Quick view both desktop and mobile mode
« Reply #1 on: June 20, 2016, 07:42:41 AM »
@Marko
Add to your style.css:
Code: [Select]
.orange-but {display:none!important;}
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Marko

  • ***
  • 66 posts
Re: Remove Quick view both desktop and mobile mode
« Reply #2 on: June 20, 2016, 10:35:28 AM »
Thank you sir. :)

*

alinpreda

  • ***
  • 23 posts
Re: Remove Quick view both desktop and mobile mode
« Reply #3 on: August 18, 2016, 01:29:20 PM »
And i want to remove this quick view from mobile, how can i do?

Thanks,

*

MB Themes

Re: Remove Quick view both desktop and mobile mode
« Reply #4 on: August 18, 2016, 01:58:42 PM »
@alinpreda
Place the code into media query in responsive.css
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

alinpreda

  • ***
  • 23 posts
Re: Remove Quick view both desktop and mobile mode
« Reply #5 on: August 18, 2016, 02:19:15 PM »
@alinpreda
Place the code into media query in responsive.css

That is...thanks!

*

alinpreda

  • ***
  • 23 posts
Re: Remove Quick view both desktop and mobile mode
« Reply #6 on: August 18, 2016, 02:33:05 PM »
Hmm..not work.

I have these lines:
.white .simple-wrap .orange-but { background: #fff; background: rgba(255, 255, 255, 0.65); color: #333; border: 1px solid #FF5722; -webkit-transition-delay: 0s; transition-delay: 0s; box-shadow: 0 1px 2px rgba(0,0,0,0.15); -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.15); -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.15); }
  .white .simple-wrap:hover .orange-but {background:rgba(255, 255, 255, 0.65);}
  .white .simple-wrap .orange-but .fa {background-image: url('../images/quick-sprite.png'); background-repeat: no-repeat; background-position: 0px 0px;}

remove them and put this code: .orange-but {display:none!important;} ?   or how?

Thanks!

*

MB Themes

Re: Remove Quick view both desktop and mobile mode
« Reply #7 on: August 18, 2016, 08:05:54 PM »
@alinpreda
You do not need to remove anything, just add here
Code: [Select]
display:none!important;
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots