Home › Forums › Free Themes › Signify Dark › Is It Possible to Left Align the Header Image & Menu Bar?
Tagged: header image, header menu
- This topic has 2 replies, 2 voices, and was last updated 1 year, 7 months ago by Psink.
-
AuthorPosts
-
April 7, 2023 at 9:02 am #189243BirchwoodParticipant
Hello,
Thank you for the Signify Dark theme. I’d like to know whether it’s possible to align the header image and header menu bar to the left of the page container. What I’m hoping to accomplish is to align the header content with the left edge of the content in the page container below for a more consistent appearance.
I’d also like to know whether it’s possible to make the header menu “sticky” so it stays pinned to the top of the page when scrolling down.
Thank you!
April 11, 2023 at 1:25 am #189273PsinkKeymasterHello,
First of all thank you for choosing Signify Dark theme for your site. Regarding the header alignment could you please explain more details and provide some reference screen shot.
Regarding the sticky menu add this js and css code
JS code
jQuery(document).ready(function( $ ){
$(window).scroll(function() {
if ($(this).scrollTop() > 1) {
$(‘#masthead’).addClass(‘sticky-head’);
}
else {
$(‘#masthead’).removeClass(‘sticky-head’);
}
});
});CSS code
#masthead.sticky-head .site-branding{
display: none;
}#masthead.sticky-head {
position: fixed;
z-index: 1;
background: #000;
width: 100%;
}#masthead.sticky-head #site-header-menu{
border: none;
}You can the the screen record to add this code
https://www.awesomescreenshot.com/video/16399398?key=9df412e6f41f9058f38fbb2e556613bfApril 11, 2023 at 1:25 am #189274PsinkKeymasterHello,
First of all thank you for choosing Signify Dark theme for your site. Regarding the header alignment could you please explain more details and provide some reference screen shot.
Regarding the sticky menu add this js and css code
JS code
jQuery(document).ready(function( $ ){
$(window).scroll(function() {
if ($(this).scrollTop() > 1) {
$(‘#masthead’).addClass(‘sticky-head’);
}
else {
$(‘#masthead’).removeClass(‘sticky-head’);
}
});
});CSS code
#masthead.sticky-head .site-branding{
display: none;
}#masthead.sticky-head {
position: fixed;
z-index: 1;
background: #000;
width: 100%;
}#masthead.sticky-head #site-header-menu{
border: none;
}You can the the screen record to add this code
https://www.awesomescreenshot.com/video/16399398?key=9df412e6f41f9058f38fbb2e556613bf -
AuthorPosts
- You must be logged in to reply to this topic.