DREAMWEAVER

1.Eliminarea liniei de sub linkuri :
<style type="text/css">
<!--
A {text-decoration:none}
--!>
</style>

2.SCROLLBAR

to apply color to the scrollbar you can use this below code:
<STYLE type=text/css>
BODY {
SCROLLBAR-FACE-COLOR: #color code;
SCROLLBAR-HIGHLIGHT-COLOR: #color code;
SCROLLBAR-SHADOW-COLOR: #color code;
SCROLLBAR-3DLIGHT-COLOR: #color code;
SCROLLBAR-ARROW-COLOR: #color code;
SCROLLBAR-TRACK-COLOR: #color code;
SCROLLBAR-DARKSHADOW-COLOR: #color code
}
</STYLE>
for Example:
<STYLE type=text/css>
BODY {
SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #ffffff;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #ffffff;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #ffffff
}
</STYLE>

3.Animated Text On Status bar

<SCRIPT language=Javascript>var count = 0;var delay = 100;var text = " Text will come here.................... ";function scroll () { window.status =text.substring(count,text.length)+ text.substring (0,count) if (count < text.length) count ++; else count = 0; setTimeout ("scroll()", delay);}</SCRIPT>

4.How to set text on a status bar

In Dreamweaver select the text or button to which you want to create the link.Go to window > Behaviors > click on Plus icon > set text > Set text for status bar Write whatever you want to.

home