Forum Moderators: not2easy
[edited by: alt131 at 10:24 pm (utc) on Jan 6, 2012]
[edit reason] Thread Tidy [/edit]
<!DOCTYPE html>
<head>
<html dir="ltr" lang="en-US" >
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
</head>
<style type="text/css">
#side-nav {
position: absolute;
right:0%;
width:33px;
}
</style>
<body>
<div id="side-nav">
<img src="work.png">
<img src="team.png">
<img src="awards.png">
<img src="clients.png">
<img src="contact.png">
</div>
</body>
</html>
[edited by: alt131 at 11:33 am (utc) on Jan 10, 2012]
[edit reason] Thread Tidy [/edit]
A side note, the res of the iPad is 768 X 1024, so when you rotate it you'd think it's now 1024 wide. It's not. It's still 768, automatically resized by the iPad. (Several resources out there where I've learned this.)
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<title>Test</title>
<style type="text/css">
#side-nav-container {
position: absolute;
z-index:999999;
width:100%;
left:0%;
}
#side-nav {
width:33px;
float:right;
}
</style>
</head>
<body>
<div id="side-nav-container">
<div id="side-nav">
<img src="work.png" alt="Work">
<img src="team.png" alt="Team">
<img src="awards.png" alt="Awards">
<img src="clients.png" alt="Clients">
<img src="contact.png" alt="Contact">
</div>
</div>
</body>
</html>
[edited by: alt131 at 11:35 am (utc) on Jan 10, 2012]
[edit reason] Thread Tidy [/edit]
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=768, minimum-scale=1.0, maximum-scale=1.0">
<title>Test</title>
<style type="text/css">
#side-nav-container {
position: absolute;
top:5px;
z-index:99999;
width:100%;
background:#c0c0c0;
}
#side-nav {
width:33px;
float:right;
background:#fff;
border:1px solid #000;
}
#top_row {
height:50px;
width:940px;
}
</style>
</head>
<body>
<div id="side-nav-container">
<div id="side-nav">
<p>img</p>
<p>img</p>
<p>img</p>
<p>img</p>
<p>img</p>
</div>
</div>
<div id="top_row"></div>
</body>
</html>