• Resolved mrosew

    (@mrosew)


    Hello! You have a wonderful plugin- I use it all the time ?? Unfortunately, it seems to cover up the site title/logo when activated on Education Pro. Is there any way to fix this?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    That should be a relatively easy CSS change. Since your .title-area is set to have an absolute position, you need to make sure that it will have a higher z-index than whatever it overlaps. I added z-index: 1; to your .title-area rule (line 1121 in your style.css) in Chrome’s Dev Tools and that seemed to be enough to fix it. You could pick a higher number if you wanted, just to make sure it overlays anything else you might place in its vicinity.

    You can add this directly to your style.css file, or use the Additional CSS module in the Customizer. If you edit the file directly, please make sure your files/site are backed up, and practice safe coding. Hope this helps–

    Thread Starter mrosew

    (@mrosew)

    Thank you for your speedy reply. What should I actually plug into the customizer?

    I just tried this, and it didn’t work:

    .title-area
    z-index: 1;

    Sorry- I should have prefaced with “I know enough to be dangerous”

    Plugin Author Robin Cornett

    (@littlerchicken)

    If you are adding a CSS rule, make sure it’s properly formatted–the selector goes on one line, and the rules for it are wrapped in curly braces. So what you need, and which should work, is:

    
    .title-area {
        z-index: 1;
    }
    

    Hope that helps!

    Thread Starter mrosew

    (@mrosew)

    That did the trick! Thank you!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Image Overlaying Site Title/Logo in Education Pro’ is closed to new replies.