Hello,
Create a new theme component or add this to an existing one.
Add to Common / CSS
This will display the topic image on suggested topics.
#suggested-topics {
.topic-list .main-link {
.link-middle-line {
.topic-image,
img {
display: block;
}
}
}
}
If you want to add the topic excerpt too then use this code snippet instead of the previous.
This will display the topic image and topic excerpt on suggested topics.
#suggested-topics {
.topic-list .main-link {
.link-middle-line {
.topic-image,
img {
display: block;
}
}
.topic-excerpt {
display: block;
}
}
}