• Recently installed Silver Mag lite, and when you resize the browser window one of the sidebar widgets, specifically the small one disappears completely. What code would I remove to fix this…

    Any help would be appreciated, and thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Spotted the same thing,
    Looking through the code can so far no luck? Did you manage to work it out in the end?

    it due to it responsiveness, if your site is view on small screen the small sidebar will be hidden.
    But if you want to forced it to display, apply the following css, but it will push down the big sidebar on smaller screen.

    #sidebar-small {
        display: block;
    }

    thats all

    I dropped code into stylesheet and it did not keep sidebar-small from being suppressed when screen was narrow.

    Yes its true, on screan resize JavaScript is called to change the display to none, try the below:

    #sidebar-small {
        display: block !important;
    }

    But if you want to forced it to display, apply the following css, but it will push down the big sidebar on smaller screen.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Silver Mag Resize’ is closed to new replies.