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
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 ?
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