Viewing 10 replies - 1 through 10 (of 10 total)
  • Because content is in

    .col-md-9 {
        width: 75%;
    }

    Thread Starter inkorporate

    (@inkorporate)

    what css is that in?

    Anonymous User 14733231

    (@anonymized-14733231)

    hello,

    Add col-md-12 instead of col-md-9 OR #main-row .col-md-9{ width:100%;} in your styleseet

    Thread Starter inkorporate

    (@inkorporate)

    the above made the main column full, but there is still the blank widget column above it that i need to remove

    Anonymous User 14733231

    (@anonymized-14733231)

    You want to remove leftcolumn from entire website?

    Anonymous User 14733231

    (@anonymized-14733231)

    Add this Jquery inside <head></head> tag or in footer.php to remove that blank widget div…

    <script>
    $(document).ready(function(){
    $(“.sidebar-left”).remove();
    });
    </script>

    Thread Starter inkorporate

    (@inkorporate)

    I only want it removed on that one full-width template. The above script didn’t work anyway.

    Thread Starter inkorporate

    (@inkorporate)

    ok if I go into the theme’s css and add

    .col-md-3 {
    display: none;
    }

    it removes the entire footer and every other sidebar…

    Thread Starter inkorporate

    (@inkorporate)

    I realize now that .col-md-3 is used for many widget bars….

    Thread Starter inkorporate

    (@inkorporate)

    where can I input to place the main content into 12 instead of 9? Again, I only want this on the one full width template page.

    I put the following into the template, but it doesn’t work.

    <div id="primary" class="content-area col-md-12" role="main">

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Left sidebar will NOT hide!’ is closed to new replies.