Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Pulling my hair out what little I have Please Help Re: Pulling my hair out what little I have Please Help

#99204
Blackhawkso
Member

@shamai Here is the exact section of the css and html for the section i am having trouble with

CSS

CSS
nav ul a {
display: block;
margin: 0 auto;
width: 194px;
color: #292e37;
background: #0d1524;
font-size: 2em;
text-decoration: none;
font-weight: bold;
-webkit-transition-property: all;
-moz-transition-property: all;
-ms-transition-property: all;
-o-transition-property: all;
transition-property: all;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
nav ul a:hover {
color: #0d1524;
background: #292e37;
-webkit-transition-property: all;
-moz-transition-property: all;
-ms-transition-property: all;
-o-transition-property: all;
transition-property: all;
-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
-ms-transition-duration: 0.2s;
-o-transition-duration: 0.2s;
transition-duration: 0.2s;
}

nav ul li {
list-style-type: none;
display: inline;
float: left;
text-align: center;
border-left-color: #101010;
border-left-width: 0.2em;
border-left-style: solid;
border-right-color: #101010;
border-right-width: 0.2em;
border-right-style: solid;
border-bottom-color: #101010;
border-bottom-width: 0.2em;
border-bottom-style: solid;
}

HTML

HTML