CMS Development

tam1445
Participant

Would like to hide side menu icon on desktop.

Résolue

I would like to hide the top right accordian menu icon for desktop only. But I still would want it to appear on mobile devices. I'm assuming it will need some type of media query.

 

Can anyone help me out with this?

 

Page Template:

https://app.hubspot.com/content/450778/edit/5590008625/content

 

Page Link:

http://info.6monthsmiles.com/home

 

I also attached a screenshot of the icon i'm referring to that i want hidden on desktop only.

Screen Shot 2018-03-13 at 9.53.13 AM.png

0 Votes
1 Solution acceptée
coreysmith
Solution
Contributeur de premier rang | Partenaire solutions Gold
Contributeur de premier rang | Partenaire solutions Gold

Would like to hide side menu icon on desktop.

Résolue

To get techincal... it's called a hamburger menu (mmmm, hamburgers). Yes, you'll need to have a media query.

This should do the trick: 


@media(min-width:961px){
#hs_cos_wrapper_module_1488966139486607 {display:none;}
}

@media(max-width:960px){
#hs_cos_wrapper_module_1488966139486607 {block;}
}

--
Corey Smith
Directory of Digital Marketing
corey@intuitivewebsites.com

Voir la solution dans l'envoi d'origine

1 Réponse
coreysmith
Solution
Contributeur de premier rang | Partenaire solutions Gold
Contributeur de premier rang | Partenaire solutions Gold

Would like to hide side menu icon on desktop.

Résolue

To get techincal... it's called a hamburger menu (mmmm, hamburgers). Yes, you'll need to have a media query.

This should do the trick: 


@media(min-width:961px){
#hs_cos_wrapper_module_1488966139486607 {display:none;}
}

@media(max-width:960px){
#hs_cos_wrapper_module_1488966139486607 {block;}
}

--
Corey Smith
Directory of Digital Marketing
corey@intuitivewebsites.com