Hey
I like to center the logo, so it’s in the middle (horizontaly) on top of the page. Also the menu items I like to have centered.
This is my site:
url
Thanks
Brian
Hey
I like to center the logo, so it’s in the middle (horizontaly) on top of the page. Also the menu items I like to have centered.
This is my site:
url
Thanks
Brian
Hello there,
I hope you are doing well today.
The menu is already centered but this CSS will center the logo:
/*Center logo*/
#logo {
margin: 0 auto;
}
@media (min-width: 768px){
.navbar-header {
width: 100%;
}
}
Best Regards,
Support
Hello there,
I hope you are doing well today.
The menu is already centered but this CSS will center the logo:
/*Center logo*/
#logo {
margin: 0 auto;
}
@media (min-width: 768px){
.navbar-header {
width: 100%;
}
}
Best Regards,
Support