Hi everybody, I am new on this forum and I appreciate your time and help.
I am trying to figure out why I cant make the two images on this page to work properly:
http://lmdesignsofhouston.com/test/about.html
I have created a class to float my images to the right but they are not working no matter what I do.
Please help Here is an extract of my code
Html page
<div class="content" id="user10_box_text">
<p><img src="images/about_us_06.jpg" alt="Welcome" width="210" height="56" /></p>
<div class="images_right" id="container_image_r"><img src="images/linda_bio_sm.jpg" alt="Linda Mcllwain" width="200" height="202" /><br />
</div>
My CSS
#images_right {
float: right;
}
.images_right {
float: right;
padding: 10px;
}
#container_image_r {
float: right;
width: 200px;
padding-top: 30px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
}
#container_image_r2 {
float: right;
width: 200px;
padding-top: 0px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
}