Thank you now its working great...
the new code:
CSS:
Code:
* {
margin: 0;
padding: 0;
}
body { background-image: url("../images/bg.png"); background-position:center; font-family:"Times New Roman"; font-size:11px; }
.wrapper { width: 1024px; margin: auto; }
.top { background-image: url("../images/top.png"); background-repeat:no-repeat; width: 1024px; height: 110px; }
.logo { background-image: url("../images/logo.png"); background-repeat:no-repeat; width: 228px; height: 58px; margin: 25px 50px; float: left; }
.info_top_right { width:145px; height:60px; float: right; margin: 25px 25px; }
.info_top_right_links { color: #e20448; font-size: 14px; margin: auto; }
.info_top_right_call { color: #fff; font-size: 14px; font-weight:bold; }
.wrap { width: 100%; min-height: 80px; height: 80px; }
.menu { background-image: url("../images/menu.png"); background-repeat:no-repeat; width: 172px; height: 311px; margin: 0 50px; overflow: auto; float: left; }
.menu_button_first { font-size: 15px; color: #fff; text-align:center; margin-top: 137px; }
.menu_buttons { font-size: 15px; color: #fff; text-align:center; margin-top: 9px; }
.menuline { background-image: url("../images/menuline.png"); background-repeat: repeat; width: 150px; height: 100%; margin: 0 61px; float: left; }
.right_image { background-image: url("../images/right_image.png"); background-repeat: no-repeat; width: 638px; height: 366px; float: right; margin: 25px 25px 0 0; }
.round { background-image: url("../images/round.png"); background-repeat:no-repeat; width: 452px; height: 227px; margin: auto 55px; clear: both; float: left;}
.wrapper_photo { float: right; margin: 20px 40px 0 0; }
.first_photo { background-image: url("../images/photo.png"); background-repeat:no-repeat; width: 84px; height: 84px; float: right; }
.rest_photo { background-image: url("../images/photo.png"); background-repeat:no-repeat; width: 84px; height: 84px; float: right; margin: 0 15px 0 0; }
.bottom { background-image: url("../images/bottom.png"); background-repeat:no-repeat; width: 1024px; height: 220px; margin: auto; clear: both;}
html:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="css/stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="wrapper">
<div class="top">
<div class="logo"></div>
<div class="info_top_right">
<div class="info_top_right_links"> about us | contact us </div>
<div class="info_top_right_call"> Call free: 087 000 234 </div>
</div>
</div>
<div class="wrap">
<div class="menu">
<div class="menu_button_first">home</div>
<div class="menu_buttons">about</div>
<div class="menu_buttons">protofolio</div>
<div class="menu_buttons">customers</div>
<div class="menu_buttons">contact us</div>
</div>
<div class="right_image"></div>
<div class="menuline"></div>
</div>
<div class="round"></div>
<div class="wrapper_photo">
<div class="first_photo"></div>
<div class="rest_photo"></div>
<div class="rest_photo"></div>
<div class="rest_photo"></div>
</div>
<div class="bottom"></div>
</div>
</body>
</html>
Bookmarks