Reputation: 1017
My header section is a bit messed up. My nav menu is being put below the actual title. I've tried changing the display to inline, but when i do this to the #navmenu it clears the color and completely remains the same.
I know there is probably an easy answer as for almost every question i have asked, but can someone please help me?
HTML:
<!DOCTYPE html>
<html>
<head>
<meta name="Description" content="This is your test website!"/>
<meta name="author" content="Me!"/>
<title>ReallyGoodPie | Home</title>
<link type="text/css" rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div id="wrapper">
<nav id="navmenu">
<div id="title">
<h1>Title</h1>
</div>
<ul>
<li>Home</li>
<li>About</li>
<li>Tutorials</li>
<li>Services</li>
<li>Contact Us</li>
</ul>
</nav>
<aside id="sidenews">
</aside>
<div id="center">
<section id="mainsection">
<article>
<header>
<hgroup>
<h1>This is a test</h1>
<h2>I like tests!</h2>
</hgroup>
</header>
<section>
<p>This is the main section of my section (sectception)</p>
</section>
<footer>
<p>Time and date</p>
</footer>
</article>
</section>
</div>
<footer id="cright">
<p>This is the copyright section. All rights reserved.</p>
</footer>
</body>
</html>
CSS:
*{
margin: 0;
padding: 0;
}
header, section, footer, aside, nav, article, hgroup{
display: block;
}
a{
text-decoration: none;
color: #FFF;
}
a:hover{
color: #333399;
}
#wrapper{
width: 100%;
margin: 20px auto;
margin-top: 0px;
text-align: left;
background-color: #FFF;
}
#navmenu{
background: #3366CC;
color: #eee;
text-align: right;
height: 100px;
padding: 0;
margin:0;
float: top;
width: 100%;
}
#navmenu li{
display: inline-block;
list-style: none;
padding: 20px;
}
#navmenu ul{
padding-right: 10px;
}
#navmenu li:hover{
color: #FFF;
background: #3399FF;
border-radius: 5px;
-moz-border-radius: 5px;
padding-top: 10px;
padding-bottom: 10px;
}
#mainsection{
float:left;
width: 630px;
margin:30px;
margin-top: 2
background-color:#FFF;
color: #222;
text-align: left;
}
#cright{
text-align:center;
background-color: #AAA;
clear: both;
}
#center{
width: 1000px;
height: 1000px;
background-color:#FFF;
}
#sidenews{
float:right;
width: 250px;
height: 940px;
margin: 0px 0px;
padding: 30px;
background-color:#FFF;
}
#title{
text-align: left;
padding: 0;
padding-top: 10px;
padding-left: 10px;
width: 200px;
}
h1{
width: 100px;
}
Upvotes: 0
Views: 119
Reputation: 1382
Move your title to outside of navmenu if you want it on top, or underneath if you want underneath
<div id="wrapper">
<div id="title">
<h1>Title</h1>
</div>
<nav id="navmenu">
<ul>
<li>Home</a>
<li>About</li>
<li>Tutorials</li>
<li>Services</li>
<li>Contact Us</li>
</ul>
Upvotes: 0
Reputation: 94499
Set the float property on navmenu ul
and title
to left
#title{
text-align: left;
padding: 0;
padding-top: 10px;
padding-left: 10px;
width: 100px;
float: left;
}
#navmenu ul{
padding-right: 10px;
float:left;
}
Working Example: http://jsfiddle.net/J5Zvn/
Upvotes: 0
Reputation: 2551
If I understand your "question" you want the title to be left of the navigation? In which case you need to use:
#title
{
float: left;
}
Upvotes: 2