navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

colored scroll bars

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> colored scroll bars
Page: [1]
 
bob burkett

 

Posts: 82
From: Sherman Oaks, Ca.
Status: offline

 
colored scroll bars - 10/30/2002 12:33:24   
I' m sure it has been asked a bunch of times, but I could not find info when using the search tool.

I would like to change the color of my scroll bar, similar to the blue used on this forum. Where can I learn how to do it, or get the code?
AMysticWeb

 

Posts: 855
Joined: 10/23/2002
Status: offline

 
RE: colored scroll bars - 10/30/2002 12:46:04   
Here is a script you can play with.
------------
<base target=" _self" >

<style type=" text/css" >
body {scrollbar-face-color: #F1EFDC;
scrollbar-shadow-color: #000077;
scrollbar-base-color: #F1EFDC;
scrollbar-highlight-color: #000077;
scrollbar-3dlight-color: #F1EFDC;
scrollbar-darkshadow-color: #000077;
scrollbar-track-color: #F1EFDC;
scrollbar-arrow-color: #000077;}
</style>
------------
Place this script inbetween your <Head> </Head> tags.

Also, you can download a shareware version of Fungus Scroll Bar Wizard here http://www.orchardhouse.vtrading.co.uk/SBWiz.zip
I have played with this a little. Pretty easy to use.

_____________________________

Hope I have been of some help,
Micheal

[URL=http://web.archive.org/web/20060101013129/http://www.frontpageforms.com/]FrontPageForms.com-Archive Version[/URL]
I am living Proof that Viral Procrastination exists!

(in reply to bob burkett)
bob burkett

 

Posts: 82
From: Sherman Oaks, Ca.
Status: offline

 
RE: colored scroll bars - 10/30/2002 12:50:44   
Thanks for the quick response, I' ll check it out.

(in reply to bob burkett)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: colored scroll bars - 10/30/2002 14:08:31   
That can also be placed into a CSS...

It' s IE only, so NN, O, and MZ users won' t be able to see it... shouldn' t cause any problems in those browsers tho!



_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to bob burkett)
bob burkett

 

Posts: 82
From: Sherman Oaks, Ca.
Status: offline

 
RE: colored scroll bars - 10/30/2002 15:22:45   
I just pasted it into my pages and changed the colors. It came out great. Thanks again.

(in reply to bob burkett)
bob burkett

 

Posts: 82
From: Sherman Oaks, Ca.
Status: offline

 
RE: colored scroll bars - 10/30/2002 16:42:24   
One last question, I am assuming this is a css script because of the <style type=" text/css" > line. I added the entire code to every page. It' s my understanding that with css, you can make a change to one page and have it format all the pages in a web. If this is true, how would this code look different? Or am I mistaken?

(in reply to bob burkett)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: colored scroll bars - 10/30/2002 16:50:08   
The code above is an inline style... a CSS (Cascading Style Sheet) is an external file in your root web that is linked in the header of each page...

To do the same in CSS:

in html view of a new web page paste the following:

body {
scrollbar-face-color: #F1EFDC; 
scrollbar-shadow-color: #000077; 
scrollbar-base-color: #F1EFDC; 
scrollbar-highlight-color: #000077; 
scrollbar-3dlight-color: #F1EFDC; 
scrollbar-darkshadow-color: #000077; 
scrollbar-track-color: #F1EFDC; 
scrollbar-arrow-color: #000077;} 


Now save as styles.css (there is an option under " save as" for style sheets, or save as an .htm and then right click > rename

Then in your <head> :

<link rel=" stylesheet"  type=" text/css"  href=" styles.css" >


Now every page that has that link in the header will apply the styles... you can modify all style attributes in a CSS and change every page that it applies to by modifying that one .css file!

For more on CSS go to http://www.w3schools.com and select CSS from the menu on the left...



< Message edited by Bobby -- 10/30/2002 4:57:57 PM >


_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to bob burkett)
bob burkett

 

Posts: 82
From: Sherman Oaks, Ca.
Status: offline

 
RE: colored scroll bars - 10/30/2002 17:16:00   
Thanks, I just read the Outfront tutorial on CSS, and I' ll take your code and practice. Thanks again Bobby.

(in reply to bob burkett)
pageoneresults

 

Posts: 1001
From: Orange, CA USA
Status: offline

 
RE: colored scroll bars - 10/30/2002 20:23:23   
I believe there is also a javascript solution out there for the colored scrollbars which is preferred. Reason being is that the css version is not W3C compliant and you won' t be able to validate your styles. Not that anyone really cares, just thought I' d bring that to your attention. ;)

[url=" http://www.webmasterbase.com/article/643" ]Manipulate Scrollbar Colors using CSS and JavaScript[/url]

< Message edited by pageoneresults -- 10/30/2002 8:25:43 PM >


_____________________________

SEO Consultants Directory
Find Search Engine Marketing Companies

(in reply to bob burkett)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: colored scroll bars - 10/31/2002 10:43:01   
POR - is the JS method cross browser compatible? The CSS method is IE only... unless NN7 recognizes..?

quote:

you won' t be able to validate your styles

Is that why it doesn' t work with a loose or strict DTD ?


< Message edited by Bobby -- 10/31/2002 10:44:32 AM >


_____________________________

If con is the opposite of pro, is Congress the opposite of progress?


:)

(in reply to bob burkett)
pageoneresults

 

Posts: 1001
From: Orange, CA USA
Status: offline

 
RE: colored scroll bars - 10/31/2002 19:34:23   
Bobby, I believe scrollbar colors are an IE creation and therefore not cross browser compatible. The javascript solution would only be helpful in allowing you to validate your css as the javascript is not read with the exception of the javascript attributes.

_____________________________

SEO Consultants Directory
Find Search Engine Marketing Companies

(in reply to bob burkett)
skillmaster

 

Posts: 1
Joined: 8/9/2003
Status: offline

 
RE: colored scroll bars - 8/9/2003 20:13:30   
Ok, i aswell need help because i enter this for my scroll bar and it change my text. I took the part where it said" {font: 9pt Arial, sans-serif}" (both of them) out and half of my text color was black and half was it orginal color. Source codes did not have the orginal colors in half of the page so is there anyway i can change this?

<style type=" text/css" >
<!--
* {font: 9pt Arial, sans-serif}
BODY {
background-color: #FFFFFF;
color: #000000;
scrollbar-face-color: #7FAAFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #CCCCCC;
scrollbar-3Dlight-color: #CCCCCC;
scrollbar-arrow-color: #AAFFFF;
scrollbar-track-color: #D4FFFF;
scrollbar-darkshadow-color: #999999;
font: 9pt Arial, sans-serif
}

//-->
</style>

(in reply to pageoneresults)
Charles W Davis

 

Posts: 1725
Joined: 3/7/2002
From: Henderson Nevada USA
Status: offline

 
RE: colored scroll bars - 8/9/2003 21:33:32   
Additional information:

http://www.thetemplatestore.com/help/scrollbars.asp
http://www.boogiejack.com/css004.html
http://www.teshack.com/webdesign/beyond/dhtml/code/coloredscrollbars.asp

The colors should exactly match colors on your site.

_____________________________

Enjoy! It' s your endeavor!
http://www.anthemwebs.com

(in reply to bob burkett)
igonot

 

Posts: 1
Joined: 3/25/2004
Status: offline

 
RE: colored scroll bars - 3/25/2004 18:33:21   
I´ve ben reading the solutions about this, but I have a question. Is there any way to apply this kind of properties in a <select> field? I mean, I can already change the colours in the field itself, but can´t do it with arrows & scrolls with in.

Thx

(in reply to bob burkett)
Page:   [1]

All Forums >> Web Development >> Microsoft FrontPage Help >> colored scroll bars
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts