Site logo

Archived topic

Tab block is not shown on Off Canvas Menu.

3 replies · Started by Jusung on March 3, 2023

Viewing posts 1–4 of 4

I am trying to make Off Canvas Menu now.
I added tab button on the menu, but I can't see the tab content on the off canvas menu.
The Off Canvas Menu is only visible on Mobile.

Hi there,

the off canvas element hides ul elements, hence your list cannot be seen.
Add this CSS to stop that:


.gb-tabs__item ul {
    display: block !important;
}

Thank you!!

You're welcome

This archived topic is closed to new replies.