Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #915333

    Hi,
    I was wondering if there is a possibility to keep the grid row inside the stretched layout.
    I would like to have a blog on the right side (blog view with Raster Layout) and left side image and text and underneath text. The only way to design this – without using sidebar – is the grip row design. Only thing, the grip row dos over the whole side, and I would like to have it the same wide like the stretched layout.

    Thanks for your help,

    _K

    #915520

    Hey sonderdesigner,

    Thank you for using Enfold.

    The page doesn’t exist. Please provide the login credentials in the private field. Or edit the grid row element, add a Section ID (ex: custom-grid) to it then specify the width manually in the Quick CSS field.

    #custom-grid {
        width: 1030px;
        margin: 0 auto;
    }

    The width should be the same as the Maximum Container Width value.

    Best regards,
    Ismael

    #915739

    if you are not satisfied with that quick and dirty version – here is a how to.
    i really don’t know why i’m unsatisfied with that css version – mybe the background (left and right area besides the not fullsize grid-row background color was the reason. i decided to have a surrounding container on that grid-row.

    https://kriesi.at/support/topic/grid-row-not-fullsize-how-to/

    #915864

    Hi,

    Thanks for sharing @guenni007, much appreciated :-)

    Best regards,
    Rikard

    #915926

    Thank you so much for your help. Thanks Guenni007 works perfect!

    #922413

    Hi Ismael,

    I used your code above to make the “Grid Row” not displayed full with.
    But it does not word in the mobile view correctly.
    You’ll find the login to my site under private content:

    I would be gad if you could help me.
    Thanks, Thorsten

    #923572

    Hi ThorstenFB,

    The code for custom width is affecting all sizes and it’s breaking things.

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
        #custom-grid {
          width: 100%;
        }
    }
    @media only screen and (max-width: 767px) {
      #custom-grid {
        width: 100%;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

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