Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1316723

    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

    #1316887

    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

    #1317199
    This reply has been marked as private.
    #1317432

    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

    #1319004
    This reply has been marked as private.
    #1319304

    Hi,

    Great, I’m glad that Ismael could help you out, and thanks for the update. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Timeline – milestone text font size’ is closed to new replies.