Dropdown menu remove first element border on top

Hello there,

how can I remove the top-border of my first menu element in my drop-down menu?

My site is: https://www.soelvahof.com/preise/

Hello @xoa,
Thanks for writing to us.
I checked your website It seems there is the border-top CSS comes on the submenu item.
Please have a look at the given screenshot below.
image
You can set your border from here.
Please check out our documentation to learn more about how to border in the submenu


Thanks

Thanks for your reply. Yes, but I only can choose between border-bottom or border-top. But in my submenu I want neither of them. Just the borders in the middle of the menu-entries to separate them, and no border before the first menu item and also no border after the last menu item.

Hi @xoa,

Thank you for writing in, please try adding the custom CSS below to your Inline Navigation Element CSS area.

$el .x-dropdown li:first-child a {
	border-top: 0;
}

You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

If the issue persists, please provide us login credentials in a secure note so we can take a closer look.

Cheers!

This solved my problem. Thanks a lot!

@xoa,

It’s our pleasure to help you.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.