Hello,
Thanks for reaching out to us.
Please use the following custom CSS to achieve the desired layout:
.mod-tagspopular.tagspopular ul {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-left: 0;
}
.mod-tagspopular.tagspopular ul li {
list-style: none;
}
.mod-tagspopular.tagspopular ul li a {
display: inline-block;
padding: 8px 14px;
font-size: 16px;
border-radius: 6px;
background: #f2f2f2;
transition: all 0.3s ease;
}
.mod-tagspopular.tagspopular ul li a:hover {
background: #007bff;
color: #fff;
}
After adding this CSS, the tags will display horizontally, wrap properly, and include a hover highlight effect.
Thanks.