Mobile specific header

Hi there,

How can I make the telephone number disappear and shift the hamburger menu up?

Hi @Tsogtbaatar,

Thank you for reaching out to us. To do this, please add the following code in the Theme Options > CSS:

@media screen and (max-width: 979px) {
	.x-navbar .ut-custom {
		display: none;
	}
	.x-btn-navbar {
		margin-top: -60px !important;
	}
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

Great. It worked just fine.

Thanks for that.

You’re welcome! :slight_smile:

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