Add on Spacer

Permalink
Hi there,

I am using a gallery add on, but there is a spacer block built into it to verticially align images to the bottom, and I would like it removed so that they align to the top. However, I tried adding this into my css and it just ignores it. Is there a way of doing this? I looked at the page in inspector mode and found the spacer is 111px, so tried adding a css rule of 0px but it didnt work.

 
A3020 replied on at Permalink Best Answer Reply
A3020
You can use !important in your css to override css, which is especially useful for inline css. E.g.

#selector {
margin: 0px !important;
}
NoPro replied on at Permalink Reply
Thank you :)