How to change font size of timeline title

how do I change the font size of the widget title desktop and mobile?

1 Like

Hi there and welcome to the Community, @Priya_Anand :waving_hand:

Sure, here is the code to change to apply the same title size on desktop and mobile:

 .es-widget-title {
   font-size: 20px;
 }

This is the code for mobile only:

@media (max-width: 500px) {
 .es-widget-title {
   font-size: 20px;
 }
}

And here is the code for the desktop version:

@media (min-width: 500px) {
 .es-widget-title {
   font-size: 20px;
 }
}