Hi on our client site http://www.woldskitchensandinteriors.com/us/app/
We want the above link to be removed for desktop users. If a mobile user goes to that page it loads up the smartphone app but on desktop nothing happens so it is a redudant page for desktop
Any idea how to implement that?
Hi codecreative!
Please add following code to Quick CSS
@media only screen and (min-width: 990px) {
.phone-info { display: none !important; }}
Best regards,
Yigit
not sure you understand the question
on the nav bar there is a page called our app that is shown if you hover over about us in the drop down
i want this turned off and not visible for all devices bigger than smart phone
is this possible?
Hi!
Please try the following in Quick CSS:
@media only screen and (min-width: 767px) {
#menu-item-272{
display:none !important;
}
}
Regards,
Rikard
Perfect works a charm thank you Rikard :)