Viewing 6 replies - 1 through 6 (of 6 total)
  • Yes – it’s possible assuming you have the CSS, HTML and PHP skills.

    Thread Starter sandra408

    (@sandra408)

    So Word Press supports layers?

    Thread Starter sandra408

    (@sandra408)

    I tried to use z-index positioning, but it did not do anything…

    So Word Press supports layers

    WordPress supports any and all CSS.

    Thread Starter sandra408

    (@sandra408)

    Thank you for your reply, I’ll try to figure out what would do the trick…

    Thread Starter sandra408

    (@sandra408)

    OK, if anyone needs help with layers/levels:

    to position your logo above the header image:
    ———————————————

    add this to your style.css file in your theme

    #logo{
    height: LOGO HEIGHT IN PX;
    width: LOGO WIDTH IN PX;
    background: url(images/logo.png) no-repeat;
    position: absolute;
    top: 50;
    left: 50;
    z-index:500;
    }

    Then within <div id=”branding” role=”banner”></div> put this in your theme header.php file:

    <div id=”logo”></div>

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘levels depth/layers in Word Press?’ is closed to new replies.