Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1451991

    Hi Enfold team,

    I’m trying to overlap a column into the columns below. I tried using z-index as Yigit stated here: https://kriesi.at/support/topic/z-index-overlapping-element/ but it doesn’t work for me.
    .hp-whats-new {
    z-index: 99 !important;
    }

    Please see private for page and creds.

    #1452088

    Hey Julie,

    Thank you for the inquiry.

    The structure or html of the page looks broken. The footer and socket container are not supposed to be inside the color section. Did you add any html tags to the page? Please try deactivating all plugins, then check all html on the page and make sure that all tags are closed properly.

    Best regards,
    Ismael

    #1452422

    Hi Ismael,
    Thanks. The issue you pointed out was the socket CSS with position:fixed and now set to relative.

    But the initial issue I’ve reported remains where I’m trying to overlap top right column into the columns(color sections) below. I tried using z-index as indicated and its still not working.

    #1453407

    Hi,

    Thank you for the update.

    Apply an ID to the Color Section containing the Column element in the Advanced > Developer Settings > Custom ID Attribute field. Use “avwm-hero-section,” for example, then add this css code to pull the content below and make the column overlap with the next section.

    @media only screen and (min-width: 989px) {
      /* Add your Mobile Styles here */
      #avwm-hero-section {
        margin-bottom: -500px;
      }
    }

    Best regards,
    Ismael

    #1458482
    This reply has been marked as private.
    #1458553

    Hi,

    Thank you for following up.

    and it won’t go under with this code

    This is possible but you will have to change the background color of the first section to transparent. Please try this css code:

    #hero-hp-whats-new {
        margin-bottom: -450px;
        position: relative;
        z-index: 9999;
    }
    
    #hero-hp-whats-new .container, #hero-hp-whats-new, #hero-hp-whats-new .entry-content-wrapper {
        background-color: transparent !important;
    }

    Best regards,
    Ismael

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