Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1408130

    Hey there,

    I want an element to overlap the previous Color Section (vertical handwritten Typography – see link).
    In Desktop and Tablet it works, but mobile, somehow, the Z-Index seems to be different.
    So I put this Code to my ID:

    #weisse-linie-oben-hoeher {
     border-top: 10px solid white!important;
    z-index: 9999!important;
    }
    

    But still.. the handwriting does not overlap the other Colorsection.
    Perhaps you can see why? :)

    Cheers
    Monika

    #1408150

    Hi Monika,

    z-index does not work if the block/div is static, please try to set it in relative position:

    #weisse-linie-oben-hoeher {
        border-top: 10px solid white!important;
        z-index: 9999!important;
        position: relative;
    }

    Best regards,
    Nikko

    #1408155

    Thank you Nikko,

    but sadly, this also does not help.
    Do you want a login? I just made one for an other Issue I have with this site

    #1408275

    Hi Monika,

    Thanks for giving admin access, I have added overflow: visible in the code:

    #weisse-linie-oben-hoeher {
        border-top: 10px solid white!important;
        z-index: 9999!important;
        position: relative;
        overflow: visible;
    }

    Please review your site.

    Best regards,
    Nikko

    #1408278

    Thank you Nikko!

    the handwritten Typography and some line-Elements are overlapping now, thats great!

    There are still two Elements, who are not overlapping, even when I clear my Browsercache..
    this Lines should go up over the previous color-section (see screenshots: the line above “Yes” and “From sketch to screen”)
    Do you know whats going on there?

    Thank you very much, even when we can’t fix this second problem, I’m so happy that this Typography is overlapping now! :D

    #1408284

    Hi Monika,

    You’re welcome :)
    Please try to add this CSS code as well:

    #weisse-linie-oben {
        overflow: visible;
    }

    Best regards,
    Nikko

    #1408285

    YESSS..
    Omg I’m so happy :DD
    Thank you, that worked!

    #1408288

    Hi Monika,

    I’m very happy to hear that :)
    Let us know if you still need further assistance on the same topic.

    Best regards,
    Nikko

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