Customizing Font Color For Articles In SP LMS Extension With Educon_II Template - Question | JoomShaper

Customizing Font Color For Articles In SP LMS Extension With Educon_II Template

G

Gerry

Template 11 months ago

Hello JoomShaper support team,

I am using now the Educon_II template together with the SP LMS extension and I need help with changing the font colour of the articles and texts. Currently the font colour of the text articles is inherited from link-color (#f55f5a), but I would like it to inherit from text-color (#1d252d).

In the template options under presets I have changed the colour of the body link colour, but this results in the links also getting the wrong colour. My question is therefore: Where exactly can I change the link-color to text-color to solve this problem without affecting the colours of the links?

I would be very happy to receive a quick solution or instructions.

Many thanks in advance!

Greetings

0
2 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 11 months ago #176635

Hi Gerry,

The fastest and easiest option would be to simply use Custom CSS.

.sp-page-title .sp-page-title-sub-heading {color: #1d252d;}

.sppb-addon-text-block .sppb-addon-content,
.view-category #sp-main-body .article-list .article .article-introtext,
.splms.splms-view-event .splms-event-details-list li,
.splms.splms-view-event .splms-event-topics ul.splms-event-topics-list li table.table thead, 
.splms.splms-view-event .splms-event-topics ul.splms-event-topics-list li table.table tbody,
.splms.splms-view-event .splms-event-details {color: #1d252d;}
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 11 months ago #176636

And to change/correct link color use that:

.sppb-addon-text-block .sppb-addon-content a,
.view-category #sp-main-body .article-list .article .article-body .article-header h2 a,
.splms.splms-view-event .splms-event-details-list a,
.splms.splms-view-event .splms-event-topics ul.splms-event-topics-list li table.table thead tr td a,  
.splms.splms-view-event .splms-event-topics ul.splms-event-topics-list li table.table tbody tr td a {
  color: blue;}
0