I am displaying message using jquery Topbar in a page.
My code is working properly. but prblm is that message is displayed transparently. on page load it is not clearly visible.
<script type="text/javascript" language="javascript">
$(function () {
$("#demo04").ready(function () {
$('#demo04-body').showTopbarMessage({ height: "150px", close: 2000 });
});
});
</script>
div id="demo04-body" style="display: none" >
Welcome .
</div>
.css
body
{
margin: 0px;
font-family: "Trebuchet MS", Arial, Sans-Serif;
font-size: 14px;
}
a
{
color: #990000;
text-decoration: strong;
}
a:hover
{
color: #990000;
text-decoration: strong; ...
Go to the complete details ...