Menu Settings & Color | Politist - Documentation | JoomShaper

Politist

Updated Last: 20 March 2023

Menu Settings & Color

In Politist template we used divided top menu, two separate menu - one for left and second for right side.

menu info

Color of menu items you can control by Preset settings (template) or by using custom css code inside custom.css file (more info here). If you chosen second method here is example CSS code which can help you during customization tasks:

.sp-menu-item > a {
    color: green;
}
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li:hover > a {
    color: blue;
}

You can also customize/change background color of menu bar, also using simple line of CSS code:

#sp-header, #sp-mobile-header { background: pink; }

Above CSS code works both for desktop and mobile view, two different class names.