The developer site can be found at http://www.clhdesigns.com/cliwork/wintermeresod/about.php
I am encountering an issue where the background image on the home page scales perfectly, but on the about us page it does not scale at all. I am seeking a solution where the image will scale down to 100%. Below is the code that I currently have:
<div id="main" class="about">
<div class="inner">
<div class="welcome_intro2">
<h1>Growing Top Quality Sod</h1>
<h2>for over 25 years</h2>
</div>
Below is the corresponding CSS:
#main { float:left; width:100%; padding:1em 0 3em 0; color:#666;}
.about {
background: url("../images/banner3010.jpg") no-repeat;
height:582px;
width:100%;
}
The desired outcome is to maintain the height of the image as it appears on desktop screens, while ensuring that it remains 100% responsive. Any suggestions on how to achieve this?