Home Forums Basel support forum Moving the menu from right to left on mobile Reply To: Moving the menu from right to left on mobile

#22163

Bogdan Donovan
Keymaster

Please, replace previous code snippet with the code below.

@media (max-width: 991px) {

.website-wrapper div.site-logo {
	position: absolute;
	left:50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	padding-left: 15px !important;
	padding-right: 15px !important;
	text-align: center !important;
	height: 70px;
}
	
.sticky-header .container,
.sticky-header div.site-logo{
	height: 60px;
}
	
.sticky-header .right-column .mobile-nav-icon {
	left: 15px;
}
}

@media (max-width: 767px) {
	
.website-wrapper .basel-logo-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translate3d(-50%);
	width: 60%;
	}	
}

Regards