Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #304033

    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). Screenshot of Error

    Thanks for help.

    #304115

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #304286
    This reply has been marked as private.
    #304294
    This reply has been marked as private.
    #304303

    Hi!

    You need to select a transparent header here
    http://screencast.com/t/DSbIQmlcCa

    Best regards,
    Josue

    #304360
    This reply has been marked as private.
    #304362

    Hi!

    Please add following code to Quick CSS as well

    #header_meta {
    box-shadow: none;
    background-color: transparent;
    }

    Regards,
    Yigit

    #304366
    This reply has been marked as private.
    #304367

    Hey!

    Please add following code to Quick CSS as well

    .content, .sidebar {
    padding-top: 175px;
    }

    Regards,
    Yigit

    #304409

    Hey Yigit. That´s perfect. What should i put inside if i want the same with the footer?

    #304414

    Hi!

    Please add following code to Quick CSS as well

    .content, .sidebar {
    padding-bottom: 100px;
    }

    Best regards,
    Yigit

    #304463

    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 ?

    #305150

    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

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.