Reply To: Change header color in Amara onepage theme

Home Forums Support Change header color in Amara onepage theme Reply To: Change header color in Amara onepage theme


Hi Sebastian,
Open custom.css file https://www.wos.nu/templates/wt_amara_pro/css/custom.css then add

.tm-navbar.uk-navbar {
    background: #000;
}
.uk-navbar-nav > li > a {
    color: #fff;
}

.uk-navbar-nav > li.uk-active > a {
    color: green;
}
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a {
    color: green;
}

replace the color to suite your needs.