@tuanphan Thank you, but I didn't describe the issue clearly. I wanted a wide frame for each item of work in the portfolio page, not have two work items side by side. 🙂
That said, I worked around it by doing the following:
1. Making a new feature image that is wide
2. Changing the left-and-right paddings in the CSS code.
div#gridThumbs {
grid-template-columns: repeat(1,minmax(0,1fr)) !important;
padding-left: 18vw;
padding-right: 18vw;
}
3. I also "hacked" the height by adjusting the height % where the code is for the image hover.
It looks like how I intend it to now, but there are two remaining issues:
1. I'd like to clean up the code because I don't want to do an image hover anymore now that I'm applying this style. Currently it's a hack because I've uploaded the same image in the image hover code. How do I remove the image hover code while still maintaining the shorter height?
2. The portfolio title is now very far away from the image, I think because I've specified height by a lower % (70%). Is there a way I can remove the need for a title outside the image box? (Squarespace won't let me save without a title input)