As the homepage is built with blocks, setting the vendor block to column 4 will align four blocks side by side. However, for related listings on the listing page, it remains fixed at column 3.
Therefore, I attempted to change it from:
cssCopy code
@media only screen and (min-width: 48em)
.hp-col-sm-4 {
-ms-flex-preferred-size: 33.33333333%;
flex-basis: 33.33333333%;
max-width: 33.33333333%;
}
to:
cssCopy code
@media only screen and (min-width: 48em)
.hp-col-sm-4 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%%;
}
in accordance with the CSS snippet you provided earlier to switch to four columns. However, upon testing, it appears that the changes are not reflected, perhaps due to the CSS being part of a plugin and therefore, unable to be modified.