Helix 3 Title Page - Question | JoomShaper

Helix 3 Title Page

CB

Christopher Billings

Helix Framework 1 year ago

Greetings,

I have tried to change the colour on the title page but is stays at the default. Is there a code i need to used to update change the colour?

https://prnt.sc/QnCI_Hy5vOOA

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #149962

Oh, but in 1st post your wrote "to change the colour on the title page" , not " background colour" :// ;p


HERE IS DEFAULT BG COLOR

.sp-page-title::after {
  -webkit-background-image: linear-gradient(-137deg,rgba(118,74,255,0.9) 0%,rgba(255,87,87,0.9) 100%);
  background-image: linear-gradient(-137deg,rgba(118,74,255,0.9) 0%,rgba(255,87,87,0.9) 100%);
}

Override using your own colors in both lines. You can use online background gradient generator to speed up your work :)))

Now you have everything, I hope.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #149936

Hi Christopher,

Use this Custom CSS:

.sp-page-title h2, .sp-page-title h3  {color: yellow;}

to get

info_2357_2024.jpg

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #149939

Bonus Advices!

Becuase this is Joomla 4/5 site I strongly suggest to enable Accessibility plugin with those settings

info_2358_2024.jpg

0
CB
Christopher Billings
Accepted Answer
1 year ago #149957

Thanks for the information. I want to change the colour of the background, not the text colour

0