How to change customer portal article title color

Time to time, customers wish to change the color of an articles in their LiveAgent Customer Portal with a custom color. This is a very easy task - please find the instructions below:

Please navigate into the Customer portal > Settings > Customize design > Design > Custom css

Here you can use following css code which will replace the color of an article title. The change is specific per the customer portal theme which you are going to edit.

Montana:

a[href*="ID_OF_AN_ARTICLE"] h3{
color:red !important;
}

Minimalist:

a[href*="ID_OF_AN_ARTICLE"]{
color:red !important;
}

Classic:

a[href*="ID_OF_AN_ARTICLE"]{
color:red !important;
}


Note: You need to replace the ID_OF_AN_ARTICLE with the real article ID. For example our article
support.liveagent.com/642558-How-to-change-customer-portal-article-title-color have ID 642558 

Note: We used red color just as an example. You can define your own color