The website is here:
At this page you can see that the tabs are currently blue in colour but I'm currently working with offline files that I'm changing over to the natural green that is seen all over the design of the website. Unfortunately, I have no clue what I've done and feel my tired eyes can't notice the mistake...whether it's in the code or the image...
Offline Tab Navigation Problem: http://i255.photobucket.com/albums/hh157/redbairn/Oops_zps240d13a5.jpg
[The code below is the current code for the Tab navigation:]
div.content {
border: 3px solid #095;
clear: left;
padding: 1em;
overflow:hidden;
}
div.content.inactive {
display: none;
}
ol#toc {
height: 2em;
list-style: none;
margin: 0;
padding: 0;
}
ol#toc a {
background: #bdf url(tabs.gif);
display: block;
float: left;
height: 2em;
padding-left: 10px;
text-decoration: none;
}
ol#toc a:hover {
background-color: #3af;
background-position: 0 -120px;
}
ol#toc a:hover span {
background-position: 100% -120px;
}
ol#toc li {
float: left;
margin: 0 1px 0 0;
}
ol#toc li a.active {
background-color: #095;
background-position: 0 -60px;
color: #fff;
font-weight: bold;
}
ol#toc li a.active span {
background-position: 100% -60px;
}
ol#toc span {
background: url(tabs.gif) 100% 0;
display: block;
line-height: 2em;
padding-right: 10px;
}
[Offline/New code:]
div.content {
border: 3px solid #095;
clear: left;
padding: 1em;
overflow:hidden;
}
div.content.inactive {
display: none;
}
ol#toc {
height: 2em;
list-style: none;
margin: 0;
padding: 0;
}
ol#toc a {
color: #008;
display: block;
float: left;
height: 2em;
padding-left: 10px;
text-decoration: none;
background-color: #6c9;
background-image: url(tabs.gif);
}
ol#toc a:hover {
background-color: #0c6;
background-position: 0 -120px;
}
ol#toc a:hover span {
background-position: 100% -120px;
}
ol#toc li {
float: left;
margin: 0 1px 0 0;
}
ol#toc li a.active {
background-color: #096;
background-position: 0 -60px;
color: #fff;
font-weight: bold;
}
ol#toc li a.active span {
background-position: 100% -60px;
}
ol#toc span {
background: url(tabs.gif) 100% 0;
display: block;
line-height: 2em;
padding-right: 10px;
}