Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Evan Herman

    (@eherman24)

    Hi @trashpopterror,

    You can set the font size of the titles using CSS.

    Give the following snippet a try. You’ll want to add it to your themes style.css file, or in WordPress version 4.7 or later you can add it to the custom CSS section of the customizer.

    
    h2.cd-timeline-item-title {
       font-size: 3em !important;
    }
    

    Let us know how that works for you.

    Thanks,
    Evan

    Thread Starter trashpoptERROR

    (@trashpopterror)

    Hi Evan,

    thanks a lot, it works.

    Another question:
    How can i edit the width size of the containers, where i write the text on it ?

    Plugin Author Evan Herman

    (@eherman24)

    Hi @trashpopterror,

    To adjust the widths of the container, you’ll want to tweak the main break point for the element .cd-timeline-content.

    Example:

    
    @media only screen and (min-width: 821px) {
    
       .cd-timeline-content {
          width: 50% !important;
       }
    
    }
    

    Let us know how that goes.

    Thanks,
    Evan

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Font-Titel size’ is closed to new replies.