Change the title font size on a widget

Alex Saager1
Tera Contributor

We're looking to update some text on our service portal but in doing so its altered one of the widgets and now its out of alignment, whats the easiest way to change the text size on a widget?

From the example below you can see where I've changed the text but cannot see anything in relation to text size I'd like to reduce the text size of the title Change Something / Need something new?

 

AlexSaager1_0-1696935989522.png

 

Kind regards,

Alex

 

1 ACCEPTED SOLUTION

RaghavSh
Kilo Patron

1. Go to widget instance table and look for your widget.

2. Open the instance and in CSS field try to apply below css

 

h2{

font-size:5 px !important;   // you can adjust the css as per your need.

}


Please mark the answer correct/helpful accordingly.


Raghav
MVP 2023

View solution in original post

2 REPLIES 2

RaghavSh
Kilo Patron

1. Go to widget instance table and look for your widget.

2. Open the instance and in CSS field try to apply below css

 

h2{

font-size:5 px !important;   // you can adjust the css as per your need.

}


Please mark the answer correct/helpful accordingly.


Raghav
MVP 2023

Hi Raghav,

 

This worked perfectly, thank you.

 

Alex