Tagged: portfolio grid, size, spacing
Hi,
I have chosen a 3-column portfolio grid display, but I see that it distributes the columns right next to each other and in order to fill the width of the page, it makes it far too large. Is there a way to reduce the image/icon display size and evenly distribute the spaces between them?
Thanks,
Lea
Hi,
Only by using css.
Please add this to you /css/custom.css OR to Quick CSS located in Enfold > Layout Styling … the text area at the bottom of that page
.grid-entry .inner-entry {
width: 90%;
}
You can change it , 100% is what you currently have.
Thanks,
Nick
Thanks Nick! Works, only thing is it automatically aligns the grid to the left – is there a way to center it?
Hi,
You can use this:
.grid-entry .inner-entry {
width: 90%;
margin-left: 5%;
}
.sort_width_container {
padding-left: 1.5%;
}
Regards,
Ismael
Great! Thanks