Dear expert,
I would need a quick CSS for the increase the font size of the milestone description. Ideally this is a relative font size so it can be responsive and not a fixed pix.
thanks
Anja
Hey amollde,
Thank you for the inquiry.
You can use this css code to adjust the font size of the milestone content or description.
.av-milestone-content {
font-size: 20px;
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael
Hi,
You have to add or create css media queries to adjust the font size on different screens.
// https://www.w3schools.com/css/css_rwd_mediaqueries.asp
@media only screen and (max-width: 767px) {
.av-milestone-content {
font-size: 14px;
}
}
This should adjust the font size to 14px on devices with a maximum screen width of 767px.
Best regards,
Ismael