This displays well in IE 8 and poorly in Chrome. . .
CSS is as follows:
@charset "utf-8";
/* CSS Document */
/* 10/16/2011 */
html, body {
margin:0;
padding:0
}
body {
color:#000;
background: url(images/blinds1.png) fixed;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size:100%;
line-height:1.3;
padding:0 10px;
margin-top:30px;
}
#outer {
max-width:1200px;
min-width:400px;
width:100%;
/*margin-right:20px;
margin-left:10px;*/
position:relative;
}
h1,2,3,4,5,6{font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
p {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
float:right;
width:66.67%;
font-size:90%;
font-style:normal;
line-height: 120%;
text-align: justified;
color:#6CF;
padding: 1% 0.5 1% 0.5;
}
.plate
{
float:right;
display:block;
position: relative;/* IE bug fix*/
}
/* container for the navigation */
#nav {
margin:0;
padding:0;
list-style:none;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
color:#fff;
font-size:90%;
position: fixed;
top:30px;
width:26.67%; /*width of navigation list 320px*/
overflow:hidden;
}
* html #nav{position:absolute;}
#nav li{font-size:80%;margin:0 0 5px;
list-style:none;}
#nav a,#nav a:link,#nav a:visited {
color: #6CF;
list-style: none;
text-decoration: none;
}
#nav li a:hover{color:#fff}
/*************************************************NAVIGATION ENDS HERE***************/
#footer {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
float:right;
width:66.67%;
font-size:50%;
font-style:normal;
line-height: 110%;
color:#6CF;
text-align:justify;
padding-top:2%;
}
/* eND css*/
What I would like is to clean up my css and html before I go any further.
I’s also like to place some text next to the small SFR logo but haven’t mastered that.
I’ve been away for awhile and have forgotten much of what I’d learned.
Thanks.
Rick