Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions

You are not logged in.

Announcement

#1 2014-08-09 17:10:07

Glenn
Member
Registered: 2014-08-09
Posts: 12

[Solved] Change font of 'Live help is online...'

Hello,

I'm wondering which file should be modified or receive an override to change the font of the text 'Live help is online...' in the chat widget. I've tried a few things but without luck so far.

Thanks

Offline

#2 2014-08-09 17:14:41

remdex
Administrator
From: Lithuania
Registered: 2012-09-23
Posts: 3,661
Website

Re: [Solved] Change font of 'Live help is online...'

Hi,

There is three options.
1. Just create a theme in back office, and in one custom CSS fields write your styles. "Status widget additional CSS, takes effect after save"
2. You can override styles directly in your site CSS by appending !important flag.
3. you can manually override templates files at
https://github.com/LiveHelperChat/liveh … er.tpl.php

I suggest just to use first or second method.

Offline

#3 2014-08-09 17:50:01

Glenn
Member
Registered: 2014-08-09
Posts: 12

Re: [Solved] Change font of 'Live help is online...'

Thanks. I'm using method 1 and added following for "Status widget additional CSS":

#lhc_status_container{font-family: Verdana;}

However, it's still showing the original font. It's not a caching issue.

Offline

#4 2014-08-09 17:52:23

remdex
Administrator
From: Lithuania
Registered: 2012-09-23
Posts: 3,661
Website

Re: [Solved] Change font of 'Live help is online...'

You should have it like

#lhc_status_container *{font-family: Verdana;}

Or

#lhc_status_container .status-icon{font-family: Verdana;}

You should use chrome debug to see what styles and in what order it applies smile

Offline

#5 2014-08-09 17:56:08

Glenn
Member
Registered: 2014-08-09
Posts: 12

Re: [Solved] Change font of 'Live help is online...'

Thanks a lot, that's working fine!

Offline

Board footer