Your Time:
Our Time:
← Back to discussions

Disable Header/Header Widget on mobile

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 5 replies, 2 voices, and was last updated 9 years, 1 month ago by Anonymous.

  • 2017-07-05 at 11:30 pm
    Support Expired
    #21141
    tdufore
    Participant
    • Topics: 9
    • Replies: 23
    • Total posts: 32
    • Post count: 23

    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

    2017-07-06 at 10:33 am
    #21149
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    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;

    2017-07-07 at 12:37 am
    Support Expired
    #21167
    tdufore
    Participant
    • Topics: 9
    • Replies: 23
    • Total posts: 32
    • Post count: 23

    This seems to disable the header widgets entirely, I only want to disable it below a certain width resolution. Is this an option?

    Thanks

    2017-07-07 at 5:46 am
    Support Expired
    #21169
    tdufore
    Participant
    • Topics: 9
    • Replies: 23
    • Total posts: 32
    • Post count: 23

    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?

    2017-07-07 at 10:40 am
    #21171
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    Add the below code in theme options/styling/custom css section.

    @media only screen and ( max-width: 959px ) {
        .mobile-widget-right-s2 {
            display: none;
        }
    }
    2017-07-24 at 12:24 pm
    #21258
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    We are setting this topic to be resolved. If you wish to update this topic please reply here instead of creating another topic.

You must be logged in to reply to this topic.