Scroll Bars Showing On Modal Menu - Question | JoomShaper

Scroll Bars Showing On Modal Menu

L

Linda

Template 1 day ago

Hi, Unfold template Joomla 6.0.2 Helix Ultimate 2.2.4 SP Page Builder 6.2.2

Issue: Vertical and horizontal scroll bars showing on the modal menu

Just starting on this development site so done very little. I have added a logo and changed colours.

Tried adding the following custom code with no difference:

.modal-open .modal::-webkit-scrollbar { display: none; }

.modal-open .modal { -ms-overflow-style: none; / IE and Edge / }

.modal-open .modal { scrollbar-width: none; / Firefox / }

Would appreciate some help with remedying this. Thank you.

0
3 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 day ago #216510

Hi there!

Thanks for reaching out.

I could not find out your horizontal scrollbar but here is code snippet for the verticle one. So, please use the following code in your custom.css:

#sp-header.header-with-modal-menu.classic-layout .modal-menu-inner > div {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

Hope this helps!

Best regards,

0
L
Linda
Accepted Answer
1 day ago #216511

That did the trick. Thank you very much. Appreciate your help.

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 day ago #216535

Hi,

Glad that I could help and thanks for accepting the answer :)

Have a nice day!

0