forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: starrunner on January 01, 2006, 12:32:06 pm

Title: How do I change the scrollbar color? where 2 put the css?
Post by: starrunner on January 01, 2006, 12:32:06 pm
Pls.. help  , when I put the scrollbar code inside the css file.. nothing happened
Title: Re: How do I change the scrollbar color? where 2 put the css?
Post by: Joachim Müller on January 01, 2006, 02:43:11 pm
post your code changes and maybe a link to your page, we're not mindreaders.
Title: Re: How do I change the scrollbar color? where 2 put the css?
Post by: starrunner on January 01, 2006, 03:03:14 pm
here's what I did..  I inserted the code for the scrollbar inside the css file
Code: [Select]
/* if you don't like a color, just do a search */
/* and replace on the hex color...             */

body {
        background: url("images/");
        background-color: #FDE8C8;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        font-size : 10px;
        color: #FFA975;
        margin: 0px;
        scrollbar-3dlight-color: #FDE8C8; scrollbar-arrow-color:#FDE8C8;
    scrollbar-base-color: #FDE8C8; scrollbar-darkshadow-color: #FDE8C8;
    scrollbar-face-color: #FDE8C8; scrollbar-highlight-color: #FDE8C8;
    scrollbar-shadow-color: #FFFFFF; scrollbar-track-color:#FDE8C8;
   
}

table {
        font-size : 10px;
but nothing happened..  http://www.w-hub.com/photo
Title: Re: How do I change the scrollbar color? where 2 put the css?
Post by: Bacchus on January 02, 2006, 07:07:54 pm
Try this in your CSS:

Code: [Select]
html, body {
margin: 0px;
scrollbar-3dlight-color: #F6F6EF;
scrollbar-arrow-color:#DCD3A2;
scrollbar-base-color: #FFF7E2;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-face-color: #FFF7E2;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-track-color:#E3E3E3;
}

body {}

Sometime I get this problem and this is what I do.
Title: Re: How do I change the scrollbar color? where 2 put the css?
Post by: kateheaven on January 02, 2006, 08:27:04 pm
Try this in your CSS:

Code: [Select]
html, body {
margin: 0px;
scrollbar-3dlight-color: #F6F6EF;
scrollbar-arrow-color:#DCD3A2;
scrollbar-base-color: #FFF7E2;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-face-color: #FFF7E2;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-track-color:#E3E3E3;
}

body {}

Sometime I get this problem and this is what I do.


thanks Bacchus, that answered my question in another post.
Title: Re: How do I change the scrollbar color? where 2 put the css?
Post by: starrunner on January 03, 2006, 02:27:42 pm
Try this in your CSS:

Code: [Select]
html, body {
margin: 0px;
scrollbar-3dlight-color: #F6F6EF;
scrollbar-arrow-color:#DCD3A2;
scrollbar-base-color: #FFF7E2;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-face-color: #FFF7E2;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-track-color:#E3E3E3;
}

body {}

Sometime I get this problem and this is what I do.
oh it's working now!! :D Thanks so much