Move logo down to mobile menu when viewed on mobile device

Posted in: Newspaper
Post count: 32

Hi I am using heading style 3, which works fine on desktop, but the logo is far to high up on the screen when viewed on mobile. Is there some CSS to bring this down over the green menu?

http://www.theenglishgarden.co.uk/

Post count: 6535

Hi

Try this custom css:

@media (max-width: 767px){
.header-style-3 .td-logo img {
position: relative;
right: 0px;
top:0!important;
}
}

The result should be like here: http://screencast.com/t/aHxnJkY4Q

Thanks!

Post count: 32

Perfect thanks. Now how do I hide the top menu on mobile?

Thanks

Post count: 6535

Hi

Use this css: http://screencast.com/t/0yKCmLfmkWR4

@media (max-width: 767px){
.td-header-menu-wrap {
display: none!important;
}
}

Thanks!

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