Hi guys,
I'm once again stuck on something that is probably simple to solve, but I cant figure it for the life of me!
Basically, I'm trying to make my website look as fluid as possible. I dont want it to look all boxed and hyper organised, but I want it to be well structured and laid out.
Im trying to put my logo and navigation bar on the same level, but for some reason, it seems impossible to do so!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Buntingford Community Choir</title>
<style type="text/css">
<!--
body {
font: 100% "Harlow Solid Italic", "Corbel";
background: #666666;
margin: 0;
padding: 0;
text-align: center;
color: #000000;
}
.wrapper #container {
width: 1200px;
background: #FFFFFF;
margin: 0 auto;
border: 1px solid #000000;
text-align: left;
}
.wrapper #mainContent {
padding: 0 20px;
text-align: left;
}
.wrapper #logo {
text-align: left;
}
.wrapper #navigationbar {
text-align: right;
}
-->
</style></head>
<body class="wrapper">
<div id="container">
<div id-"logo">
<img src="../Imagery/Logos, banners, and other graphics/Logo.jpg" alt="" width="130" height="78" /><!-- end #logo --></div>
<div id="navigationbar">
<img src="../Imagery/Logos, banners, and other graphics/Navigation Bar/Navigation Bar.jpg" alt="" width="593" height="50" />
<!-- end #navigationbar --></div>
<div id="mainContent">
<h1>My Head</h1>
<p>Your text here</p>
<!-- end #mainContent --></div>
<!-- end #container --></div>
</body>
</html>
There is the code for it, any advice on how to do it would be highly appreciated!
Many thanks!