|
Well I was getting to aggravated with how it was before so i decided to set it up differently (plus im pressed for time.) Although now ive run into a new problem... If you look at the site now the home page, elected officers,tsa events, technology courses , photo gallery and oss buttons light up red when you click over them which I like. However if you scroll down were it says Kathleen high school and TSA it also set it up like the ones above and I don't want them like that... Also I can't center the Top buttons. I've changed the codes so it is supposed to center it but like I said before im new to CSS and HTML and I'm not that great at it.
<style type="text/css">
ul
{
float:CENTER;
width:100%;
padding:0;
margin:0;
list-style-type:none;
}
a
{
float:Center;
width:6em;
text-decoration:none;
color:black;
background-color:white;
padding:0.2em 0.6em;
border-right:1px solid black;
}
a:hover {background-color:FF0000}
li {display:inline}
</style> <<<<< is the style code.
Is the buttons codes>>>>>> <ul>
<li><a href="#">Home Page</a></li>
<li><a href="#">Elected Officers</a></li>
<li><a href="#">Technology Courses</a></li>
<li><a href="#">TSA Events</a></li>
<li><a href="#">Photo Gallary</a></li>
<li><a href="#">OSS Info</a></li>
</ul>
<HR></HR><br>
Last edited by Ragdoll1607; 02-26-2008 at 07:57 PM..
|