Page 1 of 1

Gallery top padding with page intro

Posted: 13 Jul 2017, 09:37
by laxina
Hi Karl,

when I use page intro with gallery below, there is a padding between the page intro, please check out the image attached.

I use the code you give me already in the custom css
Code
.gallery {

  margin-top: 0 !important;
is it possible that I can remove the padding? 

thanks

Leon 

Re: Gallery top padding with page intro

Posted: 13 Jul 2017, 11:28
by mjau-mjau
With the intro module, it is necessary for us to add extra space to the first module by default. Else, the first text/title/image would be squeezed up right up to the intro without any space. In your case, try this:
Code
.module-first {
    margin-top: 1px !important;
}
I am pretty sure you want 1px, but if not, change it to 0.

Re: Gallery top padding with page intro

Posted: 13 Jul 2017, 19:27
by laxina
thanks a lot, works great!