Sun, 2010-08-29 23:53
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
Mon, 2010-08-30 00:31
#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>
Mon, 2010-08-30 18:20
#2
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