Jump to content

How to move a section above site header

Recommended Posts

You can use this code to Page Header Code Injection. The code will move First Section above Header

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
jQuery(document).ready(function($){
  $('article>section:first-child').insertBefore('header#header');
})
</script>
<style>
header#header {
   position: sticky !important;
  transform: Unset !important;
}
div#siteWrapper>section {
    padding: 0px !important;
    z-index: 999999 !important;
}
</style>

If you can't make code work, you can share link to page in screenshot, we can check easier

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
  • 2 months later...
On 6/5/2024 at 7:13 AM, BlancDesignStudio said:

Hey @tuanphan
Thanks for posting this code, I've found it helpful.
Is there a way to get the first section to move above the header on the home page only?

Thanks in advance for your help!

Use this code

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
jQuery(document).ready(function($){
  $('body.homepage article>section:first-child').insertBefore('body.homepage header#header');
})
</script>
<style>
body.homepage header#header {
   position: sticky !important;
  transform: Unset !important;
}
body.homepage div#siteWrapper>section {
    padding: 0px !important;
    z-index: 999999 !important;
}
</style>

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
  • 2 weeks later...

@BlancDesignStudio The code @tuanphan shared, affected both desktop and mobile layouts, which may not be a good user experience on mobile devices.

Here's the updated version that will only affect the desktop version:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
jQuery(document).ready(function($){
  $('body.homepage article>section:first-child').insertBefore('body.homepage header#header');
})
</script>
<style>
@media screen and (min-width: 768px) {  
body.homepage header#header {
   position: sticky !important;
  transform: Unset !important;
}
body.homepage div#siteWrapper>section {
    padding: 0px !important;
    z-index: 999999 !important;
}
}
</style>

 

If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. 

Sam
Web Developer & Digital Designer

 Did you find my contribution helpful? Buy me a coffee?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.