Viewing 1 replies (of 1 total)
  • Hi @cblackenburg,

    You could use some custom CSS to increase the width of the theme’s sidebar.

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    #secondary {
        width: 32%;
    }
    
    #content {
        margin-right: 41%;
    }
    
    #primary {
        margin-right: -36%;
    }

    Increase/decrease the value of width to experiment with different widths for the sidebar. You will need to increase/decrease both margin-right values by the same amount in order to keep all of your content lined up.

    Let me know how you get on with that or if you have any extra questions.

Viewing 1 replies (of 1 total)
  • The topic ‘How to Increase Sidebar Width in Forever Theme’ is closed to new replies.