Link to home
Start Free TrialLog in
Avatar of wayne_henry
wayne_henry

asked on

Full Size Page Background

I am trying to make the page have a full size background regardless of the size of the browser window. I found code online but no matter what I do I cannot get it to work in this instance. Please help. HTML and CSS file are attached.
index.html
style.css
Avatar of wayne_henry
wayne_henry

ASKER

I posted all code and images to http://irawaynehenry.com/rw/
ASKER CERTIFIED SOLUTION
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try this

body {
background:url('images/your_image.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
Worked perfectly. Thank you!