Ok I want to say that I am soooo bad at CSS that it is not funny. I like it but for some reason CSS is hard for me to learn. I know many languages but this one is hard for me. Bearing that I have a question. I was looking at a webpage for making a CSS bases menu and I was going to use this code. SO I have made my CSS bases menu and it shows up in the top left hand conor of my screen. Now I want to move this meny to the middle of my screen, both horizontely and verticly. How can I do this. I might be asking much but seeing this will help me out. Here is the code
Any help would be welcomed.
Thanks -T
-How important does a person have to be before they are considered assassinated instead of just murdered?
-Need more cow bell!!!
Code:
<style>
#navigation a
{
color: #000;
background: #fb0 url("left-tab.gif") left top no-repeat;
text-decoration: none;
padding-left: 10px
}
#navigation a span
{
background: url("right-tab.gif") right top no-repeat;
padding-right: 10px
}
#navigation a, #navigation a span
{
display: block;
float: left
}
/* Commented backslash hack hides rule from IE5-Mac \*/
#navigation a, #navigation a span
{
float: none
}
/* End IE5-Mac hack */
#navigation a:hover
{
color: #fff;
background: #26a url("left-tab-hover.gif") left top no-repeat;
text-decoration: none;
padding-left: 10px
}
#navigation a:hover span
{
background: url("right-tab-hover.gif") right top no-repeat;
padding-right: 10px
}
#navigation
{
list-style: none;
padding: 0;
margin: 0
}
#navigation li
{
float: left;
display: block;
margin: 0;
padding: 0
}
</style>
<ul id="navigation">
<li><a href="/"><span>Home</span></a></li>
<li><a href="/"><span>Back</span></a></li>
<li><a href="/"><span>Front</span></a></li>
</ul>
Any help would be welcomed.
Thanks -T
-How important does a person have to be before they are considered assassinated instead of just murdered?
-Need more cow bell!!!