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

Header Customazation

MS

Martin Seidl

Helix Framework 4 years ago

Hi Team, I was using the aresmurphy template and the header had no background.the menu is on the background image. see it here: https://dosch2.arkiadesign.de/angebote-dosch/klangbehandlung.html I switched to helix framework for it is Joomla 4 compatible, but how to make the header section without background in the main navigation like in aresmurphy? see here: https://dosch2.arkiadesign.de/termine.html

0
18 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #34734

Hello Martin Seidl

Please use this CSS to Template Options -> Custom Code -> Custom CSS

#sp-header {
    background: transparent;
    position: absolute;
    box-shadow: none;
}

Best regards

0
MS
Martin Seidl
Accepted Answer
4 years ago #35126

thnx Ofi, but how can I have the sticky logo with padding-top:0px; and the normal log with padding-top:50px;?

There is also a strange behaviour in the header when I scroll down, it seems like there is a horizontal line coming.

I want the header like here: https://dosch2.arkiadesign.de/ not like here: https://dosch2.arkiadesign.de/angebote-dosch/klangbehandlung.html (the logo should not have padding top)

thnx

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #35133

Please use this CSS to Template Options -> Custom Code -> Custom CSS

.header-sticky .logo{
    padding-top: 0px !important;
}
0
MS
Martin Seidl
Accepted Answer
4 years ago #35135

great, thnx, one step more, now the last step:-)

see, the change/switch (by scrolling down) from normal header to sticky header is much more smooth in the old template https://dosch2.arkiadesign.de then here: https://dosch2.arkiadesign.de/angebote-dosch/klangbehandlung.html what to do?

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #35164

Please use this CSS to Template Options -> Custom Code -> Custom CSS

#sp-header .header-sticky{
    transition: 0.3s !important;
}
0
MS
Martin Seidl
Accepted Answer
4 years ago #35165

sorry I cant see any change :-( I tried also

sp-header .header-sticky{

-webkit-transition: 0.3s!important; transition: 0.3s!important; }

but no change or improvement. the header jumps still very quickly to the top, even if i change the value

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #35272

Please use this CSS to Template Options -> Custom Code -> Custom CSS

#sp-header .header-sticky{
    -webkit-transition: 0.3s !important; 
    transition: 0.3s !important;
}

Then clear your Joomla cache and Browser's cache and then check. If possible, then check with a different browser.

0
MS
Martin Seidl
Accepted Answer
4 years ago #35292

I did as you said. I cleared also browser cache and I have a browser without caching, but no result. it is still junping too fast.

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #35301

Both the sites have the same CSS used. Please check if there is other thing causing this issue. I have no clue since I see it fine.

0
MS
Martin Seidl
Accepted Answer
4 years ago #35326

Do u mean, on your screen the transition is smooth?

0
Pavel
Pavel
Accepted Answer
4 years ago #35339

Here is a mistake. There should not be a space. And I would suggest using such code instead

.sticky-header-placeholder {
    height: 0 !important;
}
#sp-header {
    animation: none !important;
    transition: .3s;
}
#sp-header .logo {
    transition: padding .3s;
}
0
MS
Martin Seidl
Accepted Answer
4 years ago #35345

Pavel, fantastic!!! it works, just on mobile view it looks horrible....if u like help me....later i can look myself....

0
Pavel
Pavel
Accepted Answer
4 years ago #35349

Here are fixes for mobile on the basis of your code

@media (max-width: 991px) {
    #sp-header .logo {
        height: 60px !important;
    }
}

But in general, the code that you used for Desktop is not a very successful solution. Therefore, this hotfix longer looks like a crutch.

0
MS
Martin Seidl
Accepted Answer
4 years ago #35350

great, thnx, need ot see how I will work out mobile view. right now there is conflict with slideshow

0
Pavel
Pavel
Accepted Answer
4 years ago #35354

I do not see a slideshow. By the way, pay attention, I updated the code while you saw the old version. Additional important point in using this part.

0
MS
Martin Seidl
Accepted Answer
4 years ago #35387

see mobile vie including slideshow and your new code. the logo is too small and above slideshow. thnx, dear for all!

0
MS
Martin Seidl
Accepted Answer
4 years ago #35388
0
Pavel
Pavel
Accepted Answer
4 years ago #35398

Remove that

@media (max-width: 991px) {
    #sp-header .logo {
        height: 60px !important;
    }
}

Use it with your values instead.

@media (max-width: 991px) {
   #sp-header {
       height: auto !important;
   }
   #sp-header .logo {
       height: inherit !important;
       padding-top: 30px;
   }
   .logo-image {
       height: 80px;
   }
}
0