Viewing 1 replies (of 1 total)
  • Thread Starter Free-Diver

    (@free-diver)

    Wer suchet, der findet. Hier die L?sung aus dem www.remarpro.com Forum:

    hannodi
    Member
    Posted 2 days ago #

    I got the same problem.
    Your idea of Z-axis give me the idea of checking the Z-index in the CSS files.

    In your Style.css file of your theme or your child theme, you can find an entry with branding as the name :

    #branding {
    border-top: 2px solid #bbb;
    padding-bottom: 10px;
    position: relative;
    z-index: 9999 ;
    }
    Change the z-index entry with

    z-index: 1;

    Then in the header.php file of your theme or of your child theme search the first line with body. Something like this :

    <body <?php body_class(); ?>>
    <div id=”page” class=”hfeed”>
    Add a style argument to set the Z-index value to a very high value:

    <body <?php body_class(); ?>>
    <div id=”page” class=”hfeed” style=”z-index:9999;”>

    This works for me with a child theme based on Twenty Eleven.

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] Header verdeckt Bilder’ is closed to new replies.