Helix Ultimate: Header/footer Background Color Not Transparent - Question | JoomShaper

Helix Ultimate: Header/footer Background Color Not Transparent

CH

Christian Haselsberger

Template 2 months ago

Dear Team, how can I change the background color of footer and header to transparent? It is not possible in template-settings, and i tried these settins in CSS

sp-header, #sp-header {

background-color: #fff0 !important; 

}

sp-footer, #sp-bottom {

color: #000; background-color: #fff0 !important; }

Any idea, how to "remove" the background? Thanks Christian

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

Hi

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

#sp-header{
    background-color: rgb(121 122 125 / 90%) !important;
  position:absolute;

}

.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span, .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a{
    color: white
}

#sp-footer, #sp-bottom{
     background-color: Use your color code here !important;  
}

-Regards.

0
Coldcut
Coldcut
Accepted Answer
2 months ago #149332

Hello,

try it with RGBA color, for example:

#sp-header {
/*  background-color:#222533; */
    background-color: rgba(34, 37, 51, 0.9) !important;
    animation: none !important;
}
0