fabiencalais
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colour of header?I check your site;
It’s look like you not use a child theme to modify your css
if need, look at this :
i confirm you that the css for the menu is :
/*menu hover and current menu*/ #header .menu > li.menu-hover > a, #header .menu > li.current_page_item > a, #header .menu > li.current-menu-ancestor > a, #header .menu > li > a:hover { color: #0e60ac; background: #f6f6f6; } /*menu */ #header .header-links > ul > li a { color: #0e60ac; }
Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colour of header?Sorry if it was not clear…
I understand that you want to change the black background of the header (engrave lite theme)
I did it on my side by creating a child theme and change the background-color of some css rules
for exemple, to have a white background header :
#header { background: #ffffff; }
the list of the others rules which have to be change :
#header .menu > li.menu-hover > a, #header .menu > li.current_page_item > a, #header .menu > li.current-menu-ancestor > a, #header .menu > li > a:hover
#header .header-links > ul > li a
#pre-header
#pre-header-search .search
Is it more clear for you?
Forum: Themes and Templates
In reply to: [Engrave (Lite)] conflict with easy responsive tabs extension?Sorry, i developp localy
any information i can give you?What tabs plugins are compatible with this theme?
Forum: Themes and Templates
In reply to: [Engrave (Lite)] diable comments in the default templateThanks a lot; this exactly what i was looking for
newbie in WP ??Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colour of header?i create a child theme and use custom css file to modify the background-color of the following rules :
/*
Theme Name: engrave-lite Child
Description:
Author:
Template: engrave-lite
*/@import url(“../engrave-lite/style.css”);
#header {
#header .menu > li.menu-hover > a, #header .menu > li.current_page_item > a, #header .menu > li.current-menu-ancestor > a, #header .menu > li > a:hover {
#header .header-links > ul > li a {
#pre-header {
#pre-header-search .search {