Adaptable theme - font size

Adaptable theme - font size

by Steph Doehler -
Number of replies: 2

Hi everyone,

I'm hoping this is in the correct place...

I'm playing around with the Adaptable theme and come across a stumbling block. On my course list I am looking to make the font size smaller (see image) so that the full course title features here. I've changed every possible font size under the font heading and nothing is working. 

Any suggestions please? 

Attachment Example theme.JPG
Average of ratings: -
In reply to Steph Doehler

Re: Adaptable theme - font size

by Fernando Acedo -
Picture of Plugin developers Picture of Testers

Adaptable has not a setting for the course tile font size. You must use the Custom CSS box to add the size needed:

.coursebox-content h3 {
   font-size: 24px;
}

Notice that there are several variables that can modify the text length. Mainly the font used and also the screen size. So take care because different users can see the text in different way.

Average of ratings: Useful (1)
In reply to Steph Doehler

Re: Adaptable theme - font size

by Purvi Barot -

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 !