Hi,
I have the following CSS....
and the X/HTML ....
messageScroller should have a black border but it doesn't display?
What am I missing? it displays fine in IE 7/8
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts
I have the following CSS....
Code:
#advert {
display:none;
width:100%;
height:100%;
color:#ffffff;
z-index:9999;
background-color:#000000;
margin:0;
padding:0;
border:0;
position:absolute;
top:0;
left:0;
}
#advert * {
margin:0;
padding:0;
border:0;
}
#advert table {
height:100%;
width:100%;
background-color:#000;
}
#advert td input {
cursor:pointer;
}
#messageScroller {
text-align:left;
border: 1px solid black;
color:#000;
width: 670px;
overflow:hidden;
height:110px;
z-index:99999;
float:left;
background-color:#FFFFFF;
margin-top:-310px;
margin-left:160px;
}
#messageScroller span {
color:#233e97;
font-family: Arial, Verdana;
padding:1px;
font-weight:bold;
display:block;
margin-bottom:6px;
}
#scrollMSG {
height:110px;
position:relative;
margin:5px;
}
.scrollMSG {
height:110px;
margin-bottom:10px;
}
#splashIMG {
float:none;
display:block;
position:static;
}
and the X/HTML ....
Code:
<div id="advert">
<table>
<tr>
<td align="left" valign="top"><input type="button" value="Close Window" title="Close Advert" onclick="hideit();" /></td>
<td align="right" valign="top"><input type="button" value="Close Window" title="Close Advert" onclick="hideit();" /></td>
</tr>
<tr>
<td colspan="2" align="center">
<img id="splashIMG" src="<tmpl_var name='url_to_domain'>/images/BDF/BG-May2010.jpg" usemap="#splashIMG" />
<div id="messageScroller" onmouseover="stop_scroll();" onmouseout="start_scroll();">
<div id="scrollMSG"></div>
</div>
</td>
</tr>
<tr>
<td align="left" valign="bottom"><input type="button" value="Close Window" title="Close Advert" onclick="hideit();" /></td>
<td align="right" valign="bottom"><input type="button" value="Close Window" title="Close Advert" onclick="hideit();" /></td>
</tr>
</table>
<map name="splashIMG">
<area shape="rect"..... (removed links)
</map>
</div>
messageScroller should have a black border but it doesn't display?
What am I missing? it displays fine in IE 7/8
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts