I recently changed the theme color to match our updated color scheme, but the Nav. bar and our tagline are still the old color. How do I update these?
Website: logicalfront.com
Change the Color of the Nav bar
Moderator: forum_m
-
- Posts: 7221
- Joined: February 26th, 2015, 1:40 pm
Re: Change the Color of the Nav bar
Hello,
Go to Dashboard -> Appearance -> Customize -> Additional CSS -> paste code in Additional CSS box and save.
Thanks.
Go to Dashboard -> Appearance -> Customize -> Additional CSS -> paste code in Additional CSS box and save.
Code: Select all
.navigation_menu {
background-color: #ccc !important;
}
.logo p {
color: #999 !important;
}
Re: Change the Color of the Nav bar
This did not change anything.
-
- Posts: 7221
- Joined: February 26th, 2015, 1:40 pm
Re: Change the Color of the Nav bar
Please remove the below code from custom CSS box -
and replace the below code -
and save the changes.
Code: Select all
.navigation_menu {
background-color: #3190dd !important;
}
.navbar-default .navbar-nav > li > a {
background-color: #3190dd !important;
}
.dropdown-menu {
background-color: #3190dd !important;
}
Code: Select all
.navigation_menu {
background-color: #125eaa !important;
}
.navbar-default .navbar-nav > li > a {
background-color: #125eaa !important;
}
.dropdown-menu {
background-color: #125eaa !important;
}
Re: Change the Color of the Nav bar
These changes did not work either.
-
- Posts: 7221
- Joined: February 26th, 2015, 1:40 pm
Re: Change the Color of the Nav bar
Hello,
Go to enigma-premium theme folder and open style.css file and paste the below code in the file at the last and save the file -
Thanks.
Go to enigma-premium theme folder and open style.css file and paste the below code in the file at the last and save the file -
Code: Select all
.navigation_menu {
background-color: #125eaa !important;
}
.navbar-default .navbar-nav li a {
background-color: #125eaa !important;
}
.dropdown-menu {
background-color: #125eaa !important;
}