Adaptable theme - font size

Re: Adaptable theme - font size

by Purvi Barot -
Number of replies: 0

hello !


you can change the font size using css font-size property

here is the example:

.my-class {

font-size : medium;

}


here my-class is the class name or selector on which you want to apply the property and change the font size according to your need !


Thank you !