• Resolved primerproyecto

    (@primerproyecto)


    Hi there, my name is Juan and wonder if there is an easy way to display both sidebars collapsed no matter the width of the screen.
    In your’s theme-options you could set that stuff for mobile versions but not for web version.
    Maybe it’s not a difficult thing to get thouse sidebars collapsed but no success by my side yet …any clues?
    Thanks in advance
    juan
    panafrikana.es

Viewing 1 replies (of 1 total)
  • Hi Juan,

    Preferably with a child theme, you would modify these lines in responsive.css:
    Change:

    @media only screen and (min-width: 480px) and (max-width: 1200px) {

    To:

    @media only screen and (min-width: 480px) {

    Change:

    @media only screen and (min-width: 961px) and (max-width: 1200px) {

    To:

    @media only screen and (min-width: 480px) {

    Change:

    @media only screen and (min-width: 480px) and (max-width: 960px) {

    To:

    @media only screen and (min-width: 480px) {

    There may be some tiny more fixes like changing the toggle button height, but this should get the functionality working overall.

Viewing 1 replies (of 1 total)
  • The topic ‘sidebars collapsed by default’ is closed to new replies.