Center logo horizontally and vertically on all devices

@vinothkannans How do I center the logo both horizontally and vertically on all devices? I don’t plan on using the links… just the logo.

1 Like

I think you could achieve it by adjusting CSS for the".b-header" class. Something like below can help

.b-header .title {
float: none;
display: block;
margin: 0 auto;
width: 105px; /* your logo image width */
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.