Sticky Header - Question | JoomShaper

Sticky Header

CB

Christopher Billings

Helix Framework 2 months ago

Greetings,

How can i change the colour of my sticky header.

https://prnt.sc/j_aP9HNDBWl7

0
8 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 2 months ago #149502

Hi

Thanks for contacting us, Use this CSS in your custom.css file


#sp-header.header-sticky{
  background-color: #eef568 !important;
}
0
CB
Christopher Billings
Accepted Answer
2 months ago #149588

Greetings,

The code doesn't work!

The template is Yoga.

Tried this code to change the header colour, also didn't work: .sp-page-title:before{ background: linear-gradient(180deg,rgba(3,25,46,0) 0%,rgb(51 106 157 / 75%) 83.85%) !important; }

https://prnt.sc/QnCI_Hy5vOOA

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 2 months ago #149662

Give me your super admin access please. I need to check.

0
CB
Christopher Billings
Accepted Answer
2 months ago #149666

Please find the infos below

0
CB
Christopher Billings
Accepted Answer
1 month ago #149789

Greetings,

is there any update on this matter?

Regards Chris

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 month ago #149804

Hi

I cant access your site. Could you please check your URL?

0
CB
Christopher Billings
Accepted Answer
1 month ago #149812

sorry, my mistake.

0
Pavel
Pavel
Accepted Answer
1 month ago #149816

Hi. Here is code for header color ( gradient) with default values. Change to yours

#sp-header::after {
    background-image: -webkit-linear-gradient(137deg,#FF5757 0%,#764AFF 100%);
    background-image: -moz-linear-gradient(137deg,#FF5757 0%,#764AFF 100%);
    background-image: -o-linear-gradient(137deg,#FF5757 0%,#764AFF 100%);
    background-image: linear-gradient(137deg,#FF5757 0%,#764AFF 100%);
}

If you do not want to use the gradient, but you want a solid color, then use such a code

#sp-header::after {
    background-image: none !important;
    background-color: #000;
}

Make shure that Sticky Header option is ON.

I also want to note that Yoga uses the outdated Helix 3 framework. I would recommend that you use some template based on Helix Ultimate framework.

0