Help please how to put colored background to the menu1

place it in the gallery section as on the home page

thanks.

Hi @maximuzve,

To add the background color for navbar on the gallery page only, please add the following CSS under Theme Options > CSS:

.page-id-543 .x-navbar.x-navbar-fixed-top {
    background-color: #2c3e50 !important;
}

Hope it helps :slight_smile:

1 Like

friend and what would be for the menu of services, I forgot to ask, and thanks!

Hi @maximuzve,

For the menu, you can add a unique class to your services menu.

For example

Then target that class to add your background.

Add this in Theme Options > CSS


.x-navbar .x-nav>li.our-story {
   background-color:red;
}

Change our-story with the class that you added to your menu item.

Thanks

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