Service Portal : How can we help: how to make this text align to the left and change font size

rody-bjerke
Giga Guru

Hi,

How is it possible to make the text "How can we help you?" align to the left and change the font size of the text?

 

find_real_file.png

Best regards,

 

 

1 ACCEPTED SOLUTION

xostmoen
Tera Guru

Hi Rody,

This is possible, but you would have to create a copy of the widget that is presenting the text.

1. Open the wiget "Homepage Search" in the Widget Editor.

2. Clone the widget

find_real_file.png

Type in a logical name, then submit:

find_real_file.png

3. The properties for the size of the title, and the alignment of the text is in line 3 of the HTML Template:

<h1 class="text-center text-4x m-b-lg sp-tagline-color" ng-bind="options.title"></h1>

Change this to something like this to make the text align to the left and be smaller:

<h1 class="text-left text-2x m-b-lg sp-tagline-color" ng-bind="options.title"></h1>

See screenshot:

find_real_file.png

 

4. Now finally in the Page Designer, open up the Service Portal Index page, and replace the old widget, with the new:

find_real_file.png

 

5. Select the edit icon to add a the title:

find_real_file.png

 

find_real_file.png

Now the result should be different:

find_real_file.png

Please mark me as helpful or correct if you see me accordingly. Thank you 🙂

View solution in original post

5 REPLIES 5

Thanks, this is a much simpler solution 🙂