Header positioning for Mobile view

Posted in: Newspaper
Post count: 13

Hi,

I would like to check if it’s okay to shift the position of the nav button to the right instead of the left, and the logo to the left instead of the right?

Post count: 7909

Hi,

You can use custom css in Theme Panel > Custom Css to make this change, but please note that making this change it won’t change the position for mobile menu. It still will be opened on left side.

Thanks!

Post count: 13

Alright thanks!

If so, can I know what’s the css code for it?

Post count: 7909

Hi,

You can try this custom css in Theme Panel > Custom Css and you can change it how you wish – http://screencast.com/t/qwT0lyhkCx

@media (max-width: 767px){
#td-top-mobile-toggle {
float: right;
}
.mobile-logo-wrap img {
left: 0px !important;
right: auto !important;
}
#td-top-search {
position: absolute !important;
top: 0px !important;
right: 35px !important;
}
.header-search-wrap .dropdown-menu {
left: auto !important;
right: 0;
}
.header-search-wrap .dropdown-menu:before {
right: 15px !important;
left: auto !important;
}
}

Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.