How can I customize my website menu's colour and design?

Hello,

Please can someone advise how I get my menu to look like the screenshot below?

  • I need a line above and below it in black

  • I’d like the text to be black normally but changes to my branded pink upon hovering with a black background.

  • I’d like the dropdown menu to be like this where it is divided with lines

My website is www.glamrocksboutique.co.uk

Any help would be so much appreciated! :slightly_smiling_face:

Hey @RachelGRB ,

That’s quite a change :blush: .

Please paste this in the Custom CSS box in the Theme Customizer → Settings

header.header.header--top-center.header--mobile-center.page-width.header--has-menu.header--has-social {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
}

sticky-header.header-wrapper.color-background-2.gradient.header-wrapper--border-bottom {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    position: relative;
}

nav.header__inline-menu {
    max-width: 100%;
    width: 100%;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 5px;
    padding-bottom: 5px;
}

ul.list-menu.list-menu--inline {
    max-width: 100%;
    width: 100%;
}

summary#HeaderMenu-shop-by[aria-expanded="true"] {
    background-color: black;
    color: pink;
    border-radius: 10px;
    text-decoration: none;
}

.header__submenu.list-menu li a.header__menu-item.list-menu__item.link {
    border-bottom: 1px solid black; 
    margin: 0 5px;
}

.header__submenu.list-menu li:last-child a.header__menu-item.list-menu__item.link {
    border-bottom: none;
}

details-modal.header__search,
header-drawer{
    margin-left: auto;
}

.header__icons {
    margin-right: auto;
}

In case you are not sure, this is where you should paste it

1 Like

OMG you are a legend thankyou so much!!