Does anybody know any HTML markup language? Im looking for a code for a scrolling bar. Thanks
HTML
Not sure if you mean this or not but you can use this in your pages if you use frames.
******************
<IFRAME
SRC="your page.html"
WIDTH=450 HEIGHT=150
SCROLLING=YES
>
<A HREF="your page.html">The
link to your page</A>
</IFRAME>
****************************
or just let the browser do it with
******************************
<IFRAME
SRC="your page.html"
WIDTH=450 HEIGHT=150
SCROLLING=Auto
>
<A HREF="your page.html">The
link to your page</A>
</IFRAME>
*************************
If you are putting a text box into your page you can use a form for processing later
*************************************
<FORM>
<TEXTAREA COLS="10" ROWS="10"
STYLE="scrollbar-base-color:blue;scrollbar-arrow-color:white;">
Any text you want to put into the box
</TEXTAREA>
</FORM>
*********************************
Hope this helps.
******************
<IFRAME
SRC="your page.html"
WIDTH=450 HEIGHT=150
SCROLLING=YES
>
<A HREF="your page.html">The
link to your page</A>
</IFRAME>
****************************
or just let the browser do it with
******************************
<IFRAME
SRC="your page.html"
WIDTH=450 HEIGHT=150
SCROLLING=Auto
>
<A HREF="your page.html">The
link to your page</A>
</IFRAME>
*************************
If you are putting a text box into your page you can use a form for processing later
*************************************
<FORM>
<TEXTAREA COLS="10" ROWS="10"
STYLE="scrollbar-base-color:blue;scrollbar-arrow-color:white;">
Any text you want to put into the box
</TEXTAREA>
</FORM>
*********************************
Hope this helps.
bluedol thank you
ŭt will make a good use
SCROLLBAR-FACE-COLOR: #c6d7ff;
MARGIN: 0px 10px 10px;
SCROLLBAR-HIGHLIGHT-COLOR: #ffffff;
SCROLLBAR-SHADOW-COLOR: #ffffff;
SCROLLBAR-3DLIGHT-COLOR: #7b9ed6;
SCROLLBAR-ARROW-COLOR: #4a6184;
BACKGROUND-REPEAT: no-repeat;
FONT-FAMILY: Comic Sans MS;
SCROLLBAR-DARKSHADOW-COLOR: #bebebe"
bgProperties=fixed bgColor=#f8f0e0
MARGIN: 0px 10px 10px;
SCROLLBAR-HIGHLIGHT-COLOR: #ffffff;
SCROLLBAR-SHADOW-COLOR: #ffffff;
SCROLLBAR-3DLIGHT-COLOR: #7b9ed6;
SCROLLBAR-ARROW-COLOR: #4a6184;
BACKGROUND-REPEAT: no-repeat;
FONT-FAMILY: Comic Sans MS;
SCROLLBAR-DARKSHADOW-COLOR: #bebebe"
bgProperties=fixed bgColor=#f8f0e0
The body scrollbar (oliveiraw) colors are working only in IE. Iframe is not very popular for SEO and if you need scrollbar on some div then you can define overflow: auto; for this div.
Sonam
Sonam
You probably won't have much luck with the whole scrollbar thing
It only really works in IE... pretty much all of the others ignore it.
The previous posts have covered what you could mean by your description though - good luck!
It only really works in IE... pretty much all of the others ignore it.
The previous posts have covered what you could mean by your description though - good luck!
You can also use a online generator:
http://www.myspacemaster.net/scrollbar
But yes, like ftv_flung said, it's pretty pointless due to others browsers other than IE ignoring them.
http://www.myspacemaster.net/scrollbar
But yes, like ftv_flung said, it's pretty pointless due to others browsers other than IE ignoring them.
