I've been trying to find the bug in my css and html for about 3 or 4 hours now, but can't seem to fix it. I have only recently learned CSS + HTML so I'm hoping someone with a bit more experience can lend a hand. There are 2 problems (apparently), one the buttons do not line up like along the top and also the sidebar column is not placed correctly.
Here is a screen grab in IE:
Here is a screen grab in Mozilla:
The CSS file is here:
CCS File
The HTML for that part:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="http://www.movabletype.org/" />
<link rel="stylesheet" href="neverbc.css" type="text/css" />
<title>Never Be Complete - Contact Page</title>
</head>
<body>
<div id="container">
<div id="title"></div>
<div id="button_bar">
<ul id="buttons">
<li id="tweblog"><a href="index.html">Home</a></li>
<li id="tabout"><a href="about.html">About</a></li>
<li id="tplanning"><a href="planning.html">Planning</a></li>
<li id="tphotos"><a href="photos.html">Photos</a></li>
<li id="tsupport"><a href="support.html">Support</a></li>
<li id="tchallenge"><a href="challenges.html">Challenge</a></li>
<li id="tcontact"><a href="contact.html">Contact</a></li>
<li id="tclock"> 158 Days Until The Trip</li>
</ul>
</div>
<div id="title_bottom"></div>
<div id="content">
<h4>Email</h4><p>If you have something more personal or lengthy to say, hit me up with an email.
Once the trip has started, my response to emails won't probably be as fast nor as lengthy as I would like, but you can still reach me at
<a href="mailto:mail[@]neverbecomplete.com?subject=Remove the []s first!!!">mail @ neverbecomplete.com</a>
Just be sure to remove the []'s in the address, I've put them in there to ward of spam bots.</p>
</div>
<div id="sidebar">
<h2>About Me</h2>
<ul>
<li>-<a href="about.html">Why?</a></li>
<li>-<a href="about.html#Wants">What I want</a></li>
<li>-<a href="http://www.neverbecomplete.com/files/neverbecomplete.swf">Movie Intro</a></li>
<li>-<a href="photos.html">Photo's</a></li>
</ul>
</div>
</div>
</body>
</html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="http://www.movabletype.org/" />
- <link rel="stylesheet" href="neverbc.css" type="text/css" />
- <title>Never Be Complete - Contact Page</title>
- </head>
- <body>
- <div id="container">
- <div id="title"></div>
- <div id="button_bar">
- <ul id="buttons">
- <li id="tweblog"><a href="index.html">Home</a></li>
- <li id="tabout"><a href="about.html">About</a></li>
- <li id="tplanning"><a href="planning.html">Planning</a></li>
- <li id="tphotos"><a href="photos.html">Photos</a></li>
- <li id="tsupport"><a href="support.html">Support</a></li>
- <li id="tchallenge"><a href="challenges.html">Challenge</a></li>
- <li id="tcontact"><a href="contact.html">Contact</a></li>
- <li id="tclock"> 158 Days Until The Trip</li>
- </ul>
- </div>
- <div id="title_bottom"></div>
- <div id="content">
- <h4>Email</h4><p>If you have something more personal or lengthy to say, hit me up with an email.
- Once the trip has started, my response to emails won't probably be as fast nor as lengthy as I would like, but you can still reach me at
- <a href="mailto:mail[@]neverbecomplete.com?subject=Remove the []s first!!!">mail @ neverbecomplete.com</a>
- Just be sure to remove the []'s in the address, I've put them in there to ward of spam bots.</p>
- </div>
- <div id="sidebar">
- <h2>About Me</h2>
- <ul>
- <li>-<a href="about.html">Why?</a></li>
- <li>-<a href="about.html#Wants">What I want</a></li>
- <li>-<a href="http://www.neverbecomplete.com/files/neverbecomplete.swf">Movie Intro</a></li>
- <li>-<a href="photos.html">Photo's</a></li>
- </ul>
- </div>
- </div>
- </body>
- </html>
Thanks for taking the time to have a look - I appreciate it.