CMS Development

jbritto3
Member

Menu mobile view

SOLVE

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

0 Upvotes
1 Accepted solution
Chris-M
Solution
Top Contributor

Menu mobile view

SOLVE

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 

 

display-none.PNGhidden.PNG

View solution in original post

1 Reply 1
Chris-M
Solution
Top Contributor

Menu mobile view

SOLVE

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 

 

display-none.PNGhidden.PNG