Default Hyperlink Color - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Default Hyperlink Color

WL

Warwick Lyne

Helix Framework 2 years ago

Hi,

How do I change the default hyperlink color?

https://www.trinitychurch.com.au/

Thanks

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #95584

Hi Warwik,

but where exactly ? Everywhere or only inside "MINISTRIES" section ?

You must always be more accurate

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #95586

I saw that you already used that:

#sp-main-body a:hover {
  color: #993333;
}
#sp-main-body a {
  color: #993333;
}

Which is OK, but not always the perfect solution.

To correct link color inside "MINISTRIES" add also that

#sp-main-body .sppb-addon-overlay-image a {
  color: whitesmoke;
}

#sp-main-body .sppb-addon-overlay-image a:hover {
  color: #E4DCD3; }
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #95588

And to change color of menu items (active and hover) use also that:

.sp-megamenu-parent > li.active > a, 
.sp-megamenu-parent > li.active:hover > a,
.sp-megamenu-parent > li:hover > a 
{color: #993333;}
0
WL
Warwick Lyne
Accepted Answer
2 years ago #96645

Thanks. How do I change the color of the child items in the menu? There is one, "Contact us" under "About".

0