This topic has 5 replies, 2 voices, and was last updated 9 years, 1 month ago by Anonymous.
Viewing 6 posts - 1 through 6 (of 6 total)
Have a staging site here http://385.7ea.myftpupload.com/
Looks great at full resolution but on mobile the header widgets stay in 3 columns and take up too much room. Is there a way to disable the header right widget section on mobile resolutions?
Thanks!
Todd
Find for this code in style.css file on line no around 1219.
.widget-left-s3 {
display: flex; // Change to none
float: right;
margin: 0 auto;
text-align: left;
padding: 30px 0;
}
and change the display: flex; to display: none;
I noticed choosing Header Style 2 in the preview for mobile the rightside header widgets do eventually disappear at a very very small resolution. Can I increase the minimum size where this disappearing header widgets occurs?
Add the below code in theme options/styling/custom css section.
@media only screen and ( max-width: 959px ) {
.mobile-widget-right-s2 {
display: none;
}
}
Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.