Brand
February 5th, 2007, 03:32 PM
I'm having some issues with CSS, I know I should be able to do what I want but how, is a bit more confusing.
It should look like like this in the end.
http://img99.imageshack.us/img99/2431/picture1ha4.png (http://imageshack.us)
But right now it look more like a great big lump of grey, I can't get the blocks to space.
[edit]
I have gotten it to look more like I want but for some reason the World Wide Box doesn't show up and it makes a big space. It's all very strange because everything is the same for that box as is for the rest.
Here is the html code
<div id="nav_holder" class="navholder">
<div id="home" class="nav">Home</div>
<div id="Bolivia" class="nav">Bolivia</div>
<div id="Analysis" class="nav">Analysis</div>
<div id="America" class="nav">America</div>
<div id="World Wide" class="nav">World Wide</div>
<div id="Documents" class="nav">Documents</div>
<div id="Stuff" class="nav">Stuff</div>
<div id="Links" class="nav">Links</div>
<div id="Contact" class="nav">Contact</div>
</div>
And here is my CSS
.navholder {
font-family: Minion, Georgia, "Times New Roman", Times, serif;
font-size: 17px;
color: #000000;
top: 15px;
right: 5px;
width: 92px;
}
.nav {
background-color: #CCCCCC;
padding: 1px;
height: 15px;
width: 92px;
}
#home {
top: 0px;
right: 0px;
}
#Bolivia {
position: relative;
top: 5px;
right: 0px;
}
#Analysis {
position: relative;
top: 10px;
right: 0px;
}
#America {
position: relative;
top: 15px;
right: 0px;
}
#World Wide {
position: relative;
top: 20px;
right: 0px;
}
#Documents {
position: relative;
top: 25px;
right: 0px;
}
#Stuff {
position: relative;
top: 30px;
right: 0px;
}
#Links {
position: relative;
top: 35px;
right: 0px;
}
#Contact {
position: relative;
top: 40px;
right: 0px;
}
Am I on the right track or am I totally off in how I am doing this.
I would really appreciate any help on this.
It should look like like this in the end.
http://img99.imageshack.us/img99/2431/picture1ha4.png (http://imageshack.us)
But right now it look more like a great big lump of grey, I can't get the blocks to space.
[edit]
I have gotten it to look more like I want but for some reason the World Wide Box doesn't show up and it makes a big space. It's all very strange because everything is the same for that box as is for the rest.
Here is the html code
<div id="nav_holder" class="navholder">
<div id="home" class="nav">Home</div>
<div id="Bolivia" class="nav">Bolivia</div>
<div id="Analysis" class="nav">Analysis</div>
<div id="America" class="nav">America</div>
<div id="World Wide" class="nav">World Wide</div>
<div id="Documents" class="nav">Documents</div>
<div id="Stuff" class="nav">Stuff</div>
<div id="Links" class="nav">Links</div>
<div id="Contact" class="nav">Contact</div>
</div>
And here is my CSS
.navholder {
font-family: Minion, Georgia, "Times New Roman", Times, serif;
font-size: 17px;
color: #000000;
top: 15px;
right: 5px;
width: 92px;
}
.nav {
background-color: #CCCCCC;
padding: 1px;
height: 15px;
width: 92px;
}
#home {
top: 0px;
right: 0px;
}
#Bolivia {
position: relative;
top: 5px;
right: 0px;
}
#Analysis {
position: relative;
top: 10px;
right: 0px;
}
#America {
position: relative;
top: 15px;
right: 0px;
}
#World Wide {
position: relative;
top: 20px;
right: 0px;
}
#Documents {
position: relative;
top: 25px;
right: 0px;
}
#Stuff {
position: relative;
top: 30px;
right: 0px;
}
#Links {
position: relative;
top: 35px;
right: 0px;
}
#Contact {
position: relative;
top: 40px;
right: 0px;
}
Am I on the right track or am I totally off in how I am doing this.
I would really appreciate any help on this.