Hi guys, hi have the portfolio grid element on my site and when the title of a post is longer than the one next to it, the container is not the same size. So if you go to the bottom where it says “articles i’ve written” the first post is longer than the two next to it due to the longer title. Is there a way to make the containers equal height? Like the setting on normal containers?
Thanks!
Hey bobfurgo,
Add this to quick css:
.home .grid-sort-container article header{
max-height:100px!important;
min-height:100px!important;
}
Best regards,
Jordan Shannon
THANK YOU! Also, this is related to the same portfolio grid. Right now it looks like the row isn’t taking up the full width of the column. You can see that there is a margin to the right of the last post. Is there a way I can adjust this so that it doesn’t have this margin and aligns with the button above it that says ” view all articles”? It may have been from CSS i had put in earlier but I can’t figure it out for some reason. Thanks again,
Hi,
That is because following custom code
#articles-ive-written .grid-entry .inner-entry {
margin-right: 9%;
box-shadow: none;
transition: .7s;
margin-bottom: 14%;
}
Please try adding following code to Quick CSS as well
@media only screen and (min-width: 767px) {
#av-sc-portfolio-1 {
width: 104%;
}}
Best regards,
Yigit