모든 기기에서 로고를 수평 및 수직으로 중앙 정렬

@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.

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 */
}