Archived topic
Side Widgets Larger
1 reply · Started by Callandra Dendias on January 4, 2015
Hi all,
Hoping someone can help me - my page is http://www.thevpp.ca
As you can see I have 3 separate show graphics down either side of my site. How can I make them larger so that they take up more space and there is less of a margin down each side? The Artistic Directors of the theatre really want this change made and I have been learning this whole wordpress world as I go - in a bit over my head!
I appreciate any help you can throw my way!
Callandra
Hi Callandra,
I'm seeing this CSS added by the "McStudios Shortcode" plugin:
.container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
width: 940px;
}
This is overriding the width you have set in the Customizer (1500px).
A plugin using a class like "container" isn't very good coding - lots of room for issues with themes.
What you can try doing is add your own custom CSS:
body .grid-container {
width: auto;
}
Hope this helps :)