Can I put a background image that covers the whole background and doesn't tile the image. If so what size would it need to be and what would the code be? Great theme by the way. Regards, Barry
Hello, To achieve this, Firstly go to Appearance > Theme options > General Settings > Background Image and remove image from there. Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: body, html { background: url(Enter your image address here) no-repeat center center fixed!important; -webkit-background-size: cover!important; -moz-background-size: cover!important; -o-background-size: cover!important; background-size: cover!important; } This will solve your issue.