Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi rockyintertidalcocreative,

    I seen your comment. you can use the below code but only if you never going to display side bar on any pages in you site.

    -> Go into your current theme and open the “style.css” file “#main” tag in the file so you will find below code.

    #main {
        display: block;
        float: left;
        width: 75%;
    }

    so in this code just do 100% in place of 75%. and then find “#sidebar” so you will find the below code.

    #sidebar {
        display: block;
        float: left;
        width: 25%;
    }

    Here just replace none in place of block. So you will get the solution you want.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin

    Then use its “CSS Code” section of the dashboard to hold your CSS modifications:

    Alternatively use your Child Theme style.css file to hold your CSS modifications:

    .home #sidebar {
        display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘sidebars’ is closed to new replies.