すべてのデバイスで中央にロゴを水平および垂直に配置する

@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

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

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