Tagged: enfold, header, style, transparent
Hi
i have uploaded a complete transparent header image (PNG) but the background is black. I have deleted any colour in enfold styling options (header).
Thanks for help.
Hi,
Can you post the link to your website please?
Regards,
Josue
Hi!
You need to select a transparent header here
http://screencast.com/t/DSbIQmlcCa
Best regards,
Josue
Hi!
Please add following code to Quick CSS as well
#header_meta {
box-shadow: none;
background-color: transparent;
}
Regards,
Yigit
Hey!
Please add following code to Quick CSS as well
.content, .sidebar {
padding-top: 175px;
}
Regards,
Yigit
Hey Yigit. That´s perfect. What should i put inside if i want the same with the footer?
Hi!
Please add following code to Quick CSS as well
.content, .sidebar {
padding-bottom: 100px;
}
Best regards,
Yigit
Hi
is there a way to look all pages like that ?
http://test2.tennisgate.com/de/2014/08/04/weltklasse-dopel-in-action-auf-gleicher-hoehe-bleiben/
without setting the transparency on each page ?
Hi,
1. Open functions-enfold.php and look for line 630:
$transparency = get_post_meta($post_id, 'header_transparency', true);
2. Replace it by this:
$transparency = apply_filters("avf_header_transparency", get_post_meta($post_id, 'header_transparency', true));
3. Add this to the theme / child theme functions.php:
function enable_header_transparency_by_default() {
return "header_transparency";
}
add_filter('avf_header_transparency', 'enable_header_transparency_by_default');
That will enable header transparency on all Posts/Pages.
Regards,
Josue