phplayers css is called 4 times. I always move the css from the layersmenu-cms.css to the css management and I replace it with /* moved to css manager */
I first noticed before I moved it out of the file because no matter how I changed the css in an inline css editor in firefox (it lets you change the css of any page so you can see the result... then I copy the changes and put them in the file/database) the changes would show up.
That is when I noticed that if I scroll down far enough then I get to .horbar again... then I scrolled down again and .horbar again.
I believe it was being called in .9rc4 3 times (if memory serves me) and then I just installed .9 and it is now called 4 times. here is what my css looks like now.
/stylesheet.php?templateid=4
Code: Select all
/* moved to css manager */
/* moved to css manager */
/* moved to css manager */
/* moved to css manager */
body, p, td, span, form, input {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
a:link, a:visited, a:active {
color: #0586bd;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
p {
line-height: 1.5em;
}
.BodyBox {
border-right-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-top-style: none;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-color: #D7D7D7;
border-left-color: #D7D7D7;
border-bottom-color: #D7D7D7;
}
.BodyBox div {
padding-left: 25px;
padding-bottom: 10px;
padding-right: 20px;
}
.header {
font-weight: bold;
font-size: 16px;
color: #123E9F;
background-image: url("/images/template/bullet_new.gif");
background-repeat: no-repeat;
text-indent: 25px;
}
.featuredcourses a:link, .featuredcourses a:visited, .featuredcourses a:active {
color: #0586BD;
text-decoration: none;
}
.featuredcourses {
color: #0586BD;
text-decoration: none;
font-size: 12px;
background-image: url("/images/template/bullet_arrow.gif");
background-repeat: no-repeat;
text-indent: 25px;
font-weight: bold;
}
.date {
font-weight: bold;
}
.location {
font-weight: bold;
}
.copyright {
font-size: .66em;
color: #FFFFFF;
}
.LeftBox {
border-bottom-width: 1px;
border-top-style: none;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-bottom-color: #D7D7D7;
}
.LeftBox div {
padding-left: 25px;
padding-bottom: 10px;
padding-right: 20px;
}
.LeftBox p.leftbox {
font-weight: bold;
font-size: 1.15em;
color: #123E9F;
}
.RightBox {
border-bottom-width: 1px;
border-top-style: none;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-bottom-color: #D7D7D7;
}
.RightBox div {
padding-left: 25px;
padding-bottom: 10px;
padding-right: 20px;
}
.RightBox p.rightbox {
font-weight: bold;
font-size: 1.15em;
color: #123E9F;
}
.footer (line 22)
{
font-family: Helvetica,Verdana,Arial,sans-serif;
color: rgb(0, 0, 0);
font-weight: bold;
text-transform: uppercase;
font-size: 0.75em;
}
.footer:hover (line 19)
{
color: rgb(17, 62, 155);
}
.horbar {
color: black;
background-color: #FFFFE4;
/*border: 2px outset #cecac1;*/
}
.horbaritem {
float: left;
white-space: nowrap;
font-family: verdana, geneva, arial, helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
}
.horbaritem a {
display: block;
text-decoration: none;
}
.horbaritem a:link {
color: #000000;
text-decoration: none;
}
.horbaritem a:visited {
color: #000000;
text-decoration: none;
}
.horbaritem a:hover {
color: #ffffff;
background-color: #4b6983;
text-decoration: none;
}
.horbaritem a:active {
color: #ff0000;
text-decoration: none;
}
.verbar {
color: black;
background-color: #EDF2F5;
}
.submenu {
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
.subframe {
position: relative;
display: block;
background-color: #EDF2F5;
border: 1px solid #64879d;
}
.item {
padding: 3px;
text-align: left;
white-space: nowrap;
}
.separator {
background-color: #ff0000;
border-top: 1px solid #9e9a91;
border-bottom: 1px solid #ffffff;
margin: 2px 1px 2px 1px; /* top right bottom left */
height: 0;
font-size: 1px;
line-height: 0
}
.item a {
position: relative;
display: block;
text-decoration: none;
}
.item a:link {
color: #000000;
text-decoration: none;
}
.item a:visited {
color: #000000;
text-decoration: none;
}
.item a:hover {
color: #ffffff;
background-color: #4b6983;
text-decoration: none;
}
.item a:active {
color: #ff0000;
text-decoration: none;
}
.item .fwdarr {
position: absolute;
top: 5px;
right: 7px;
}
I can't reproduce it in IE because I can't go to the /stylesheet.php... directly.

