Tagged: sticky header
I would like the Sticky Header on main page, but on all the other pages I would like to remove Sticky Header as you scroll down
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_action( 'wp_header', 'change_sticky_header', 10);
function change_sticky_header() {
if(!is_home()){
?>
<style>
.html_header_top.html_header_sticky #header {
position: static;
}
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 0;
}
</style>
<?php
}
}
Cheers!
Josue
Hey!
Thanks for the access, the mod should work now.
Regards,
Josue
Thank you!!
great turn around!!!!!!
You are welcome, glad to help :)
Regards,
Josue