Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1259699

    I am an experienced Enfold user, but I cannot figure out how to do one thing right now ….

    I want to place a text box inside of a 1/2 box, which is inside of a color section. The 1/2 box would have a semi-transparent background. What I want to do is have the semi-transparent background bleed to the screen. Is there any way to do this?

    Here is a picture of what I want to accomplish: https://www.dropbox.com/s/tog2cb06xeh56s9/Hero%20impage%20example.png?dl=0.
    See the white box? I want it to go to the far left of the screen.

    Thank you.

    #1259797

    Hey rmatus,

    Thanks for the screenshot. Could you post a link to where we can see the actual element on your site as well please?

    Best regards,
    Rikard

    #1259816

    Layout – or similar :

    give a custom class or in my case a unique ID to the color-section: fullwidth-content
    then to quick css:

    #fullwidth-content .container {
      max-width: 100%;
      width: 100% !important;
      padding: 0
    }
    
    #fullwidth-content .flex_column.first {
        width: 55%;
        padding: 20px 20px 10px 10vw;
        background: rgba(255,255,255,0.7);
        min-height: 150px;
        position: absolute;
        top: 20%;
    }

    see example page: https://webers-testseite.de/rmatus/

    #1259819

    this is css for the possibility to have a neightbour container to that “flag” on the left
    second color-section got a unique ID : fullwidth-content2

    #fullwidth-content2 .container .content {
      vertical-align: top !important;
    }
    
    #fullwidth-content2 .post-entry {
        position: relative;
        top: 20%;
    }
    
    #fullwidth-content2 .container {
      max-width: 100%;
      width: 100% !important;
      padding: 0
    }
    
    #fullwidth-content2 .flex_column.first {
      width: 55%;
      padding: 20px 20px 10px 10vw;
      background: rgba(255,255,255,0.7);
      min-height: 150px;
      position: relative;
      float: left;
    }
    
    #fullwidth-content2 .flex_column.avia-builder-el-last {
      position: relative;
      float: left;
      width: 30%;
    }
    
    @media only screen and (max-width: 767px) {
      #fullwidth-content2 .flex_column.avia-builder-el-last {
        float: none;
        width: calc(100% - 100px) !important;
        margin: 0 50px !important;
      }
      #fullwidth-content2 .flex_column.first {
        float: none;
        width: calc(100% - 50px) !important;
        margin-right: 50px
      }
    }
    #1259972

    Hi rmatus,

    Did you get it working for you with Guenni007’s suggestion or do you need more help?

    Best regards,
    Victoria

    #1260002

    Yes, I tried Guenni007’s suggestion and I just got it to work.. Thank you so much!

    • This reply was modified 4 years ago by rmatus.
    #1260013

    hm ?

    #1260017

    but please try the second solution. It seems the better one for responsive case:

    #fullwidth-content .container .content {
      vertical-align: top !important;
    }
    
    #fullwidth-content .post-entry {
        position: relative;
        top: 5%;
    }
    
    #fullwidth-content .container {
      max-width: 100%;
      width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    #fullwidth-content .flex_column.first {
      width: 55%;
      padding: 20px 20px 10px 10vw;
      background: rgba(255,255,255,0.7);
      position: relative;
      float: left;
    }
    
    #fullwidth-content .flex_column.avia-builder-el-last {
      position: relative;
      float: left;
      width: 30%;
    }
    
    @media only screen and (max-width: 767px) {
      #fullwidth-content .flex_column.avia-builder-el-last {
        float: none;
        width: calc(100% - 100px) !important;
        margin: 0 50px !important;
      }
      #fullwidth-content .flex_column.first {
        float: none;
        width: calc(100% - 50px) !important;
        margin-right: 50px
      }
    }
    #1260038

    Oh, this is so much better. Thank you!

    #1260130

    Hi,

    Great, I’m glad that you got it working and thanks @guenni007 for helping out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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