Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #311737
    Moni Basu
    Participant

    I’m trying to put a gallery page on our homepage of a video and accompanying side text (on https://atriummag.org/ under the featured slider). I’m using the columns block to do this because ‘media and text’ doesn’t support video embeds, but the columns block isn’t showing its normal settings. I can adjust ‘width’ but not margins, and because of this the video and text are stretching to the very ends of the screen.

    I’m thinking this is because of a !important property in the theme, but I couldn’t pinpoint it down. Is this the issue? If not, how can I get the normal columns block back?

    #311748
    Sakin
    Keymaster

    Hi Moni,

    We don’t have any !important property in the theme. So, I am not sure why you are facing the issue. But if you want to control the with of that gallery section, then you can change the max-width in the following CSS and add it in the “Appearance => Customize => Additional CSS” box:

    .gallery-section .wrapper {
      max-width: 1920px;
    }

    Also, you can add padding-left and padding-right. So, if you want to make it like the other sections then add the following CSS instead of the above CSS:

    .gallery-section .wrapper {
      max-width: 1500px;
      padding-left: 45px;
      padding-right: 45px;
    }
    #311768
    Moni Basu
    Participant

    This worked great, thank you so much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Columns error’ is closed to new replies.