felgall . . . I read some of your comments in your CSS section and found a simpler way (for me) to try and understand this.
You said something to the effect of just to layout all if my html stuff on a page and then create the CSS stuff one item at a time to see the effect.
That’s what I did.
As you asked the css and html is below.
I still can’t get things to float:right!
Where do I start?
Thanks
CSS:
/* testcss.css*/
html, body {margin:0; padding:0;
}
body{ color:#000;
background-image: url(images/bluemarb.gif);
background-attachment:fixed;
font-family:"Lucida Sans Unicode", "Lucida Grande"; font-size:100% ; text-align: justify ;
line-height:120%; color: #fff; text-indent:1em;
}
#imgchart1 {float:right; width:900px; clear:left;
}
#imgchart2 {float:right; width:900px; clear:left;
}
#footer {float:right; width:900px; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size:60%; line-height: 80%; color:#000; text-align: justify;}
#footer p{margin:0;}
HMTL:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Properties With Style, Inc. Orange County Real Estate</title>
<link href="testcss.css" rel="stylesheet" type="text/css" />
<style type="text/css"></style>
</head>
<body>
<img src="Images/NewHeaderImage.gif" width="900" height="200" alt="header image" />
<p>As you can see we are rebuilding our web presence from the ground up. Each visit will eventually display differnt pages as testing and debugging continues. Please check back with us to see the development process and gain real estate data/information as it appears</p>
<p>Arguably the most eclectic collection of home styles and lifestyles. Set behind 24/7 guarded gates, Coto de Caza offers two excellent golf courses with many fairway home site communities and ultimate equestrian estates. The village is just as the namesake describes - a village, set among oak trees covered rolling hills with trails for equestrian, hiking, mountain bike riding or just strolling along with friends. There is no Mello Roos taxes in the Village! The sports park holds many activities throughout the year complete with baseball diamonds, sand pit volleyball courts and much more. Don't miss The Coto de Caza 4th of July Parade.</p>
<p>The following charts show 12 year average sale prices for Coto de Caza in Orange County, California. Also plotted is the percent price difference from the PREVIOUS YEAR. The percent-change scale is on the right of the chart and the dollar scale on the left. The year is noted on the bottom of the chart. Also averaged, but not shown is the square feet of the home and the number of transactions for each year, important information to understand the numbers.</p>
<img src="Images/cdc-Att-Title.gif" width="900" height="34" alt="chart title" />
<img src="Images/cdc_sfr.gif" width="900" height="675" alt="cdc sfr chart" />
<p>The following charts show 12 year average sale prices for Coto de Caza in Orange County, California. Also plotted is the percent price difference from the PREVIOUS YEAR. The percent-change scale is on the right of the chart and the dollar scale on the left. The year is noted on the bottom of the chart. Also averaged, but not shown is the square feet of the home and the number of transactions for each year, important information to understand the numbers.</p>
<img src="Images/cdc-condotitle.gif" width="900" height="34" alt="condo title" />
<img src="Images/cdc_condo.gif" alt="cdc sfr chart" width="898" height="675" />
<div id="footer"><p>Copyright: Properties With Style, Inc., a Real Estate Coproration. Data and some inforamtion herein is provided by SoCalMLS, CRISNet Regional MLS and/or CARETS is for the consumer's personal, non-commercial use and may not be used for any purpose other than to identify prospective properties consumer may be interested in purchasing. Any information relating to real estate for sale referenced on this web site comes from the Internet Data Exchange (IDX) program of the SoCalMLS, CRISNet Regional MLS and/or CARETS. This web site may reference real estate listing(s) held by a brokerage firm other than the broker and/or agent who owns this web site. The accuracy of all information, regardless of source, including but not limited to square footages and lot sizes, is deemed reliable but not guaranteed and should be personally verified through personal inspection by and/or with the appropriate professionals. The data contained herein is copyrighted by SoCalMLS, CRISNet Regional MLS and/or CARETS and is protected by all applicable copyright laws. Any unauthorized dissemination of this information is in violation of copyright laws and is strictly prohibited. Copyright© 2011 SoCalMLS®, CRISNet Regional MLS®, CARETS®All Displays of Licensed Content shall include: Property Information© 2011 SoCalMLS Inc. All rights reserved. Certain information contained herein is derived from information which is the licensed property of, and copyrighted by, SoCalMLS Inc</p></div>
</body>
</html>