Centered mobile logo

Hello, X-Masters.

Please, give me an advice what a CSS I need to add for centered mobile logo?

Just now I had used this:

@media (max-width: 1001px) {
	header.masthead .x-brand.img {
		width: 50%;
	}
}

Thank you.

Hi there,

Thanks for writing in! Could you please try adding the following CSS rule into youe Theme Options > Global CSS area.

@media (max-width:979px){
  header.masthead .x-brand.img {
    float: none !important;
    margin: 0 auto;
  }
}

Hope that helps.

Thank you!

You are helped me! :slight_smile:

Glad that we could be of a help :slight_smile:

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