Remove Line In Menu (Podcast Template) - Question | JoomShaper

Remove Line In Menu (Podcast Template)

W

Wiebe

Template 3 years ago

Hello,

I'm working on a website https://medic.uwwebontwerp.nl/ with the podcast template and got a question.

I would like to remove the line underneath the active menu-item, can't find how to do this in CSS.

Thanks in advance, Wiebe

0
3 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #539

Yes, it is the selector:

.sp-megamenu-parent > li:after

So you can merge this with previous one as follows:

.sp-megamenu-parent > li.active:after, .sp-megamenu-parent > li:after
{
    display:none;
}

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #528

Hi there!

I think the Template is not from us, and we do not provide any customization support as it is prohibited here!

However I am suggesting a small CSS for you:

.sp-megamenu-parent > li.active:after
{
    display:none;
}

Best Regards

0
W
Wiebe
Accepted Answer
3 years ago #529

Take a look at this; https://www.joomshaper.com/joomla-templates/podcast :)

That code is working, can you also tell me how to remove that line while hovering over a menu-item?

0