Settings on styles
As you will see with the code below, I want my .fly style (which is just text) to have a border around it, instead the #layer is getting that border around it, any idea why ?
Thank You
#Layer1 {
position:absolute;
width:333px;
height:278px;
z-index:3;
left: 565px;
top: 409px;
background-attachment: scroll;
background-image: url(simple_graphic.png);
background-repeat: no-repeat;
}
.fly {
background-color: #999966;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-width: medium;
border-right-width: medium;
border-bottom-width: medium;
border-left-width: medium;
}
|