Urgent Help with Right Float Images
Posted: 15 September 2010 02:56 AM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2010-09-15

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 {
    
floatright;
}
.images_right {
    float
right;
    
padding10px;
}
#container_image_r {
    
floatright;
    
width200px;
    
padding-top30px;
    
padding-right10px;
    
padding-bottom10px;
    
padding-left10px;
}
#container_image_r2 {
    
floatright;
    
width200px;
    
padding-top0px;
    
padding-right10px;
    
padding-bottom10px;
    
padding-left10px;
Profile
 
 
Posted: 15 September 2010 03:41 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  3
Joined  2010-09-15

Have you tried to include the “float: right” in a div on the html page? Or does that work neither?

I know this would not be the most elegant solution but this is a good check to find out where the problem could lie.

Profile
 
 
Posted: 15 September 2010 05:34 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2010-09-15

Thanks man, I did your suggestion, to embed the css rule on the html code and it worked. Thanks alot

Profile