I am new to this but I am trying to learn so I am sure this is a silly
question. I got a free template for Dreamweaver and I was trying to
customize the template. There were 3 boxes under the banner and I
wanted to duplicate them and make 6 boxes so I just copied and pasted
the html under the previous html - now there are red x's on the 3
boxes/div's I created in the history. I have been reading to find out
why and I think it is because the path is incorrect since I just copied
and pasted the html therefore the div class is the same as the 3 boxes
before. Can someone please tell me how I can define a new class for the
new boxes I pasted under the old ones. Thanks
Code:
<div class="homefeatureboxes">
<div class="homeleft-box"> <span
class="homefeaturetitle">Carpet Cleaning</span><img
src="http://www.webmaster-talk.com/images/carpet_cleaning.png" width="79" height="78" />
<p>We take pride in our carpet cleaning. "We will not
leave the scene until the carpet stain is Absolutely Clean!"</p>
<p><a href="#">Read more...</a></p>
</div>
<div class="homemiddle-box"><span
class="homefeaturetitle">Residential Cleaning</span><img
src="http://www.webmaster-talk.com/images/residential2.png" width="79" height="78" />
<p>Providing professional residential home cleaning with a
reputation for quality and reliability. </p>
<p><a href="#">Read more...</a></p>
</div>
<div class="homeright-box"><span
class="homefeaturetitle">Comercial Cleaning</span><img
src="http://www.webmaster-talk.com/images/commercial.png" width="79" height="78" />
<p> Your*<em>commercial</em>*needs are covered as we offer
quality office*<em>cleaning services</em>. </p>
<p><a href="#"> Read more...</a></p>
</div>
<br style="clear: both;" />
</div>
<div class="homefeatureboxes">
<div class="homeleft-box"> <span
class="homefeaturetitle">Window Cleaning</span><img
src="http://www.webmaster-talk.com/images/window_cleaning.png" width="79" height="78" />
<p>We guarantee timely, reliable and performed with the
highest degree of quality and professionalism.</p>
<p><a href="#">Read more...</a></p>
</div>
<div class="homemiddle-box"><span
class="homefeaturetitle">Floor Cleaning</span><img
src="http://www.webmaster-talk.com/images/buffing.png" width="79" height="78" />
<p>Simple maintenance and regular cleaning will increase the
life of a floor by 30-40%.</p>
<p><a href="#">Read more...</a></p>
</div>
<div class="homeright-box"><span
class="homefeaturetitle">Office Cleaning</span><img
src="http://www.webmaster-talk.com/images/office.png" width="79" height="78" />
<p>Absolutely Clean is equipped to serve with trained
experienced insured and bonded staff. </p>
<p><a href="#"> Read more...</a></p>
</div>
<br style="clear: both;" />
</div>
Last edited by Shakadoodoo; 05-11-2010 at 10:07 AM..
|