hanna38 Posted June 13, 2020 Share Posted June 13, 2020 Site URL: https://www.raumpunkt.at/projekte-raumpunkt would like to have only one portfolio column with small width. please help. thank you Link to comment
tuanphan Posted June 13, 2020 Share Posted June 13, 2020 Add to Home > Design > Custom CSS div#gridThumbs { grid-template-columns: repeat(1,minmax(0,1fr)); padding-left: 10vw; padding-right: 10vw; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
hanna38 Posted June 13, 2020 Author Share Posted June 13, 2020 thank you tuanphan, now I have padding on both sides, but there are still two portfolios per row. Link to comment
tuanphan Posted June 13, 2020 Share Posted June 13, 2020 try div#gridThumbs { grid-template-columns: repeat(1,minmax(0,1fr)) !important; padding-left: 10vw; padding-right: 10vw; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GLP_Films Posted October 19, 2021 Share Posted October 19, 2021 Hi, just wanted to insert an additional question here, since it seems close to being able to solve an issue for me. On my portfolio landing page, I'd like the grid content to align with the site logo and header (Work). The grid is currently set to inset, but there doesn't seem to be a way to get that totally aligned without some additional CSS.https://www.glpfilms.com/work Thank you for your time! Link to comment
tuanphan Posted October 21, 2021 Share Posted October 21, 2021 On 10/20/2021 at 2:12 AM, GLP_Films said: Hi, just wanted to insert an additional question here, since it seems close to being able to solve an issue for me. On my portfolio landing page, I'd like the grid content to align with the site logo and header (Work). The grid is currently set to inset, but there doesn't seem to be a way to get that totally aligned without some additional CSS.https://www.glpfilms.com/work Thank you for your time! Add to Design > Custom CSS /* Work page */ body#collection-6144ae52f7f7512cf5e50ec5 { /* change logo color */ header#header img { filter: invert(1); -webkit-filter: invert(1); } /* align content */ div#gridThumbs { padding-left: calc(~"3vw - 20px"); padding-right: calc(~"3vw - 20px"); } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GLP_Films Posted October 21, 2021 Share Posted October 21, 2021 Thanks so much - this worked perfectly and you fixed my logo invert from another question! Wonderful! If I might ask one more thing, I would also like to do this alignment on my News page, which is set up with the blog landing page format. I tried subbing in the Collection ID like you did, but it didn't seem to react, so I guess the Blog formatting is just a bit different?https://www.glpfilms.com/news Link to comment
tuanphan Posted October 25, 2021 Share Posted October 25, 2021 On 10/22/2021 at 12:05 AM, GLP_Films said: Thanks so much - this worked perfectly and you fixed my logo invert from another question! Wonderful! If I might ask one more thing, I would also like to do this alignment on my News page, which is set up with the blog landing page format. I tried subbing in the Collection ID like you did, but it didn't seem to react, so I guess the Blog formatting is just a bit different?https://www.glpfilms.com/news Add to Design > Custom CSS .blog-basic-grid.collection-content-wrapper { padding-left: 0; padding-right: 0; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GLP_Films Posted October 25, 2021 Share Posted October 25, 2021 Awesome, thanks again! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.