Left sidebar will NOT hide!
-
I can’t get my full-width page to actually go the full width. The left sidebar, even though nothing is in it, still pushes everything over to the right. Help please.
for reference, this page specifically:
http://www.inkorporategraphics.com/design-your-own/
-
Because content is in
.col-md-9 { width: 75%; }what css is that in?
hello,
Add col-md-12 instead of col-md-9 OR #main-row .col-md-9{ width:100%;} in your styleseet
the above made the main column full, but there is still the blank widget column above it that i need to remove
You want to remove leftcolumn from entire website?
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>I only want it removed on that one full-width template. The above script didn’t work anyway.
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…
I realize now that .col-md-3 is used for many widget bars….
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">
The topic ‘Left sidebar will NOT hide!’ is closed to new replies.