Hi, I’ve been trying to set the content area of the pages to full width so I can utilize a background image in full width as well.
Example:
I have set background images in several places using similar CSS like so:
.front-page-body{
background: url(/wp-content/uploads/2014/09/RedFooter.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Which works fine and covers the entire HTML page, or div, etc. But what I want is actually the entire content area to be full width (width: 100% fluid) so I can use an image that will differentiate the content area from any other background image used on the page itself. I have tried using the element spacing and layout combination to see if I can extend it to full width, but even getting rid of the sidebars and widget areas its a no go for me.
Any suggestions?
Thanks in advance.