I am trying to hide the desktop menu (dark bar) on the mobile view, but when I add classes they don’t work in the css. Thoughts on how to call this out.
https://www.inneractionmedia.com/testjb?hs_preview=fVvuVCpV-31232765151
I am trying to hide the desktop menu (dark bar) on the mobile view, but when I add classes they don’t work in the css. Thoughts on how to call this out.
https://www.inneractionmedia.com/testjb?hs_preview=fVvuVCpV-31232765151
Hi @jbritto3,
- you can always use the class “hidden” which will put a display: none; on this element.
- in the drag and drop editor there is a field called “inline styling”, you can put:
display: none;
- or just take a class and hide it in the css file like:
.maintop2 {
display: none;
}
This should hide the navigation menu.
- Chris