Color Of Links - Question | JoomShaper

Color Of Links

WW

Walter Wood

SP Page Builder 2 months ago

The links on my SP Page Builder website are red without an underline. See https://staging5.geotech.com/resources/faqs

We would like to change them to the standard colors and underline.

An unvisited link is underlined and blue A visited link is underlined and purple An active link is underlined and red

I am assuming that the CSS can be changed or modified. How and where in Page Builder can this be done?

The site is Joomla 5.1.1 and Page Builder is 5.3.4.

0
1 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 months ago #160853

Hi there!

Thanks for reaching out.

Please use the following code in your custom CSS:

a:link {
    color: blue;
    text-decoration: underline;
}
a:visited{
    color: purple;
    text-decoration: underline;
}
a:active{
    color: red;
    text-decoration: underline;
}

Here is all about custom code placement in Helix Ultimate: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

Best Regards

0