Hello scarcrow11,
Even if we downsize the category font that also don’t solve the problem. The best way to change the structure of the category page then we can manage by the css as per the requirement.
Kind regards,
Manoj
Hi @scarcrow11
Please add the following code in additional css box:
.home-primary-wrapper {
width: 100%;
}
.category-button a {
font-size: 10px;
margin: 0 5px 0 0;
}
Note: you can change the font-size value according to your requirement.
Thanks π !
Thankyou, It worked well on the browser version of my website and on the mobile version but there is still some bad overlapping on the tablet version. How would you recommend fixing this?
Hi @scarcrow11
Please add the following code in additional css box:
@media (min-width: 768px) and (max-width: 1200px) {
.editorial_block_grid .column-4-layout .single-post-wrapper {
display: inline-block;
float: none;
margin-right: -4px;
vertical-align: top;
width: 31.33%;
}
}
Thanks π !