How to make Login field visibile at mobile view?

Posted in: Newspaper
Post count: 35

Hello guys,

this theme is great also on smartphones and thanks for the amazing support here. I’ve one little question. how did you solved it to get the “Login” field visible at mobiles too? Because the top navigation (sub-navigation) is not visible at the mobile view. How to get the “Login” Button now visible only on mobiles?

Thanks in advance!
Serg

Post count: 6600

Hi,

Please try this custom CSS, add it in Theme Panel -> Custom CSS

.td_ul_login, .td_ul_logout {
display: none;
}   

@media (max-width: 767px) {
.td-header-menu-wrap, .td_ul_login,
.td_ul_logout {
display: inline !important;
text-align: right;
}

.td-header-menu-wrap .span9 {
display: none !important;
}

.td-header-menu-wrap .span3 {
background-color: #4b4b4b;
height: 26px;
}

.td_ul_login,
.td_ul_logout {
margin: 0 8px 0 0 !important;
}
}

Hope this works
Thanks

Post count: 35

Thank you very much Lucian!

Post count: 29

When I do this, it work but this time the login field is invisible in computers

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