Join 353,887 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 3,187 people online right now.Registration is fast and FREE... Join Now!
my css started originally as a header, left column, content and footer. I have taken out the left column as I was having problems.
what I need to know is where I now put my list as it was originally in the left column, I've put it in the content part but I cant align it to the left.
if its in the right place how do I align it to the left?
if it is in the right place where do I put it and how do I lighn it to the left?
thanks
here is my code:
<html>
<head>
<title>Contact Me</title>
<link rel="stylesheet" type="text/css" href="mycss2.css"/>
</head>
<body>
<div id="header">
<h1>Contact Me</h1>
</div>
</div>
<div id="content">
<ol type= "I">
<li><a href="First%20Page.html">HOME</a></li>
<li><a href="Second%20Page.html">2ND PAGE</a></li>
<li><a href="Third%20Page.html">3RD PAGE</a></li>
<li><a href="Fifth%20Page.html">5TH PAGE</a></li>
</ol>
</div>
<center>
<div id="footer">The material featured on this website is subject to Crown copyright protection unless otherwise indicated. The protected material may be reproduced
free of charge in any format or medium for research or private study.</div>
<Center>
</body>
</html>
I now want to change it to a Drop down menu, here is my code:
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="mycss2.css"/>
</head>
<body>
<div id="header">
<h1>About Me</h1>
<
<div id="content">
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="flyout.css" type="text/css" />
<script type="text/javascript" src="flyout.js"></script>
<left>
<div id="wrapper">
<dl class="dropdown">
<dt id="one-ddheader" class="upperdd" onmouseover="ddMenu('one',1)" onmouseout="ddMenu('one',-1)">Menu</dt>
<dd id="one-ddcontent" onmouseover="cancelHide('one')" onmouseout="ddMenu('one',-1)">
<ul>
<li><a href="Second%20Page.html"" class="underline">2nd Page</a></li>
<li><a href="Third%20Page.html"" class="underline">3rd Page</a></li>
<li><a href="Fourth%20Page.html"" class="underline">4th Page</a></li>
<li><a href="fifth%20Page.html"" class="underline">5th Page</a></li>
</ul>
</dd>
</dl>
<left>
</div>
<center>
<div id="footer">The material featured on this website is subject to Crown copyright protection unless otherwise indicated. The protected material may be reproduced
free of charge in any format or medium for research or private study.</div>
<Center>
</body>
</html>
It won't left align! I tried adding a dl to the css but that didn't work, (I tried adding <left> as you can see) and that didnt work, how do I align it to the left?
also I have my heading to the left but how do I bring it out a bit so that its not dead to the left?