Icon Link Widget, how to make title bold?

Edwin Fuller
Tera Guru

How can I make the title of each icon link widget "BOLD"?

 

find_real_file.png

1 ACCEPTED SOLUTION

Ian-Fusion3
Tera Guru

First you'll want to locate the Icon Link Widget. Under Widgets search for "Icon Link".

Clone the Widget so you can make the appropriate changes.

It looks like you are using the color box template so on line 22 in the HTML template replace it with the follow

<h2><b>\{\{::options.title\}\}</b></h2>

Remove the slashes, that is just to get around the formatting from community. This will bold the Title using the b tags.

 

Next you'll have to replace the standard widget with your new custom one.

View solution in original post

3 REPLIES 3

Ian-Fusion3
Tera Guru

First you'll want to locate the Icon Link Widget. Under Widgets search for "Icon Link".

Clone the Widget so you can make the appropriate changes.

It looks like you are using the color box template so on line 22 in the HTML template replace it with the follow

<h2><b>\{\{::options.title\}\}</b></h2>

Remove the slashes, that is just to get around the formatting from community. This will bold the Title using the b tags.

 

Next you'll have to replace the standard widget with your new custom one.

shovarau
Kilo Expert

Hello,

You need to add style in the widget editor. 

Like this  <h2 style = "font-weight : bold">{{::options.title}}</h2>

Hope this helps.

 find_real_file.png