Background Not Showing
When ever I want to preview my website the background for my body won't show up, yet in live view it does. I have a box within the main content for my text and I removed it to see if that was the problem but it's not. I'm using both Dreamweaver CC 2015 (School) and Dreamweaver CC 2018(Home). I'm getting annoyed and I cannot find any information to help me, this website is part of my Major Project for yr12 and I'm freaking out that I won't get it finished in time. (First picture is live view, second is preview)


The CSS for the body , Body text and content box are below
body {
background-image: url(Images/Grey_Wooden_BG.jpg);
background-repeat: repeat;
text-align: center;
}
#Body_Text {
background-image: url(Images/Light_Grey_BG.jpg);
text-align: center;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
font-size: 18px;
font-weight: bold;
color: #1d1d1d;
padding-top: 5px;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 10px;
height: 2500px;
width: 1100px;
margin-top: 10px;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
border-radius: 10px;
}
.Text_Box {
text-align: center;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
font-size: 18px;
font-weight: bold;
color: #1d1d1d;
height: 1500px;
width: 1100px;
}
