Didn't I do that in my first post? I'm so sorry, I don't mean to waste anyone's time, I'm just confused.
Anyway, just in case, I'm posting them again. I have 2 css stylesheets, one for the menu, one for the rest, and the html. I hope this is what you need.
Code:
#maindiv{z-index:1; position:absolute; top:-20; left: 20%; ; right: 20%; width:60%; height:150%; background-image: url('images/divback.jpg'); }
#footer{ display: inline-block; clear: both; height: 5%; border-top: 1px solid white; padding: 0; margin: 0; background-color: black; }
#header { margin: 0px auto; text-align:center; clear: both; padding: 0; position:absolute; left:0px; top:15px; margin-left:5%;}
#afterheader {position: relative; height:4.3%; width: 100%; top: 300; border-top: 2px solid #4f4341; border-bottom: 2px solid #4f4341;background-image: url('wall1.jpg');}
#writing {padding: 15px; border-left: 2px solid #4f4341; border-right: 2px solid #4f4341; top: 400px; width:28%; float:left; clear:both; }
#photos {padding: 15px; float: right; top:0px; width: 10%; clear: both; }
Code:
.bmenu li a{
display: block;
color: transparent;
text-transform: uppercase;
text-shadow: 0px 0px 0.2px #251c1d;
list-style: none;
letter-spacing: 1px;
list-style-type: none;
position: relative;
top:320px;
width: 18%;
padding: 5px 18px;
margin: 2px;
background: rgba(255,255,255,0.2);
letter-spacing: 1px;
text-decoration: none;
clear: both;
float: left;
-webkit-transform: skew(-12deg);
-moz-transform: skew(-12deg);
-o-transform: skew(-12deg);
-ms-transform: skew(-12deg);
transform: skew(-12deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.bmenu:hover li a{
text-shadow: 0px 0px 6px #251c1d;
list-style-type: none;
list-style: none;
-webkit-transform: skew(0deg);
-moz-transform: skew(0deg);
-o-transform: skew(0deg);
-ms-transform: skew(0deg);
transform: skew(0deg);
}
.bmenu li a:hover{
color: #fff;
background: transparent;
text-shadow: 0px 0px 1px #251c1d;
padding-left: 10px;
list-style-type: none;
list-style: none;
}
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="menu4.css" type="text/css" />
<link rel="stylesheet" href="background.css" type="text/css" />
<link rel="stylesheet" href="header.css" type="text/css" />
<title>China</title>
</head>
<body>
<div style="position:fixed; z-index:0; top:0; left:0; width:100%; height:100%;" >
<img src="wall1.jpg" width="100%" height="100%">
</div>
<div class="outer">
<div id="content"></div>
<div id="before"></div>
<div id="maindiv">
<div id="header" align="center" class="move">
<img src="images/header2.jpg" width="700px" height="210px" style="border:6px double #545565;"></img>
</div>
<div class="bmenu">
<ul style="list-style-type: none;">
here goes the menu
</ul>
</div>
<div id="writing" style="height:140%"> <font face="calibri" color="#cfd9db" size="3"> the writing </div>
<div id="photos" style="height:140%"> <font face="calibri" color="#cfd9db" size="3"> photos+writing </font></div>
</div>
</div>
</body>
</html>
Bookmarks