In HTML:
Locate this:
Code:
<h1>
<strong>MISSION ENVIRONMENT</strong> Take Action Now and Save the Environment
<span></span>
</h1>
and replace it with this:
Code:
<div class="banner">
<h1>
<strong>MISSION ENVIRONMENT</strong> <span>Take Action Now and Save the Environment</span>
</h1>
</div>
In the style.css:
Replace this:
Code:
H1 {
PADDING-RIGHT: 8px; PADDING-LEFT: 0pt; PADDING-BOTTOM: 0pt; FONT: 18px/22px verdana,arial,sans-serif; WIDTH: 750px; COLOR: #ffffff; PADDING-TOP: 17px; POSITION: relative; HEIGHT: 90px; TEXT-ALIGN: right
}
H1 STRONG {
DISPLAY: block; FONT: bold 32px/36px verdana,arial,sans-serif
}
H1 SPAN {
BACKGROUND: url(http://www.missionenvironment.com/test/images/wind3top.jpg) 0% 50%; LEFT: 0pt; WIDTH: 750px; POSITION: absolute; TOP: 0pt; HEIGHT: 102px
}
with this:
Code:
div.banner {
width: 100%; height: auto; margin: 0 0 0 0; padding: 0 0 0 0;
BACKGROUND: url(http://www.missionenvironment.com/test/images/wind3top.jpg);
background-position: left top;
background-repeat: no-repeat;
}
H1 {
PADDING-RIGHT: 8px; PADDING-LEFT: 0pt; PADDING-BOTTOM: 0pt; FONT: 18px/22px verdana,arial,sans-serif; WIDTH: 750px; COLOR: #ffffff;
PADDING-TOP: 17px; POSITION: relative; HEIGHT: 90px; TEXT-ALIGN: right;
}
H1 STRONG {
DISPLAY: block; FONT: bold 32px/36px verdana,arial,sans-serif
}
H1 SPAN {
LEFT: 0pt; WIDTH: 750px; POSITION: absolute; TOP: 0pt; HEIGHT: 102px
}