…for everyone who’s interested in the CSS code:
@media only screen and (min-width: 1201px) {
.my_inner_column_class .crp-list {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: 1fr;
}
} /* RWD Gridsystem für Related Posts am Seitenende */
@media only screen and (max-width: 1200px) {
.my_inner_column_class .crp-list {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr;
}
}
@media only screen and (max-width: 1020px) {
.my_inner_column_class .crp-list {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
}
}
@media only screen and (max-width: 768px) {
.my_inner_column_class .crp-list {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
}
}
.crp-list-title {
margin-bottom: 30px;
}
.crp-list-item-title a {
font-size: 20px;
}
Plugin Author
Brecht
(@brechtvds)
Looks great! Thanks for the example CSS in case anyone else wants to do this.
We might include something similar to our template options later.