2 replies [Last post]
lplatzeck
lplatzeck's picture
User offline. Last seen 1 year 38 weeks ago. Offline
newbie
Timezone: GMT-7
Joined: 2010-06-29
Posts: 3
Points: 5

My site: http://www.dog-allergy.org/

is my first site using CSS. I now realize that the right column should be on the left.

I've tried to figure it out. All day! Now I'm asking for help because I don't understand why I can't fix this.

Thank you for any help.

Lorri

JG1426
JG1426's picture
User offline. Last seen 1 year 36 weeks ago. Offline
newbie
Timezone: GMT-4
Joined: 2010-08-30
Posts: 1
Points: 1

RE: How do I switch my right column to a left column

Hi Lorri,
You need to utilize float, here is an example on how to do this:

<html> 
   <head> 
      <!--Currently your column is floating to the right, you need to float it to the left, say that the id for your column is called "r-column": --> 
       <style type="text/css"> 
           #r-column{ 
               float: left; 
           } 
       </style> 
    </head> 
 
    <body> 
       <div id="r-column"> 
             <p>Content you want on the left column</p> 
       </div> 
    </body> 
</html>

lplatzeck
lplatzeck's picture
User offline. Last seen 1 year 38 weeks ago. Offline
newbie
Timezone: GMT-7
Joined: 2010-06-29
Posts: 3
Points: 5

How do I switch my right column to a left column

Thank you! I will try to make the changes. Still a big learning curve for me but I love clean code.

Kind regards,

Lori