Off Topic:
I thought you had Chandler Bing, from Friends (an American TV show)
Well the HTML is fine, I guess. Hard to know without having actual content in it. Your CSS uses a huge Eric Meyer reset, which is ok, but I'd trim it down a bit. It's fine as is though...
You have some HTML5 in your CSS, aka the tags...I'd get rid of it. You have no need to be using HTML5 to begin with. There is nothing HTML5 offers over HTML4 that is worth it.
Code:
#wrapper { min-width: 960px;
margin:0 auto;
height: 1000px; /* change this later */
background: #f3f3f3;
}
#top-menu {
height: 87px;
background: #25064d;
}
#homepage-slider {
height: 400px;
background: #36175e;
}
#homepage-video {
height: 357px;
background: #553285;
}
#footer {
height: 267px;
background: #fff;
border-top: 1px solid #d0d0d0;
}
.wrap960 {
margin: 0 auto;
width: 960px;
background: #f3f3f3;
height: 100%;
}
You had some typos in there, I cleaned it up. Also some useless stuff like "width:100%;margin:0 auto;" which basically does nothing. Given the fact I don't know what your layout will be, I changed it up the best I could. I'd have this code.I left the height you had set on stuff because I HOPE you will not let that happen in the final product
. Also for <div>'s you should know that display:block is default value. Also, that width:100% set on a block element *essentially* does nothing. Width:auto is the default and does the same ting really. There are exceptions but you'll know it when you see it
.
Bookmarks