News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

Main Menu

How do I change the scrollbar color? where 2 put the css?

Started by starrunner, January 01, 2006, 12:32:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

starrunner

Pls.. help  , when I put the scrollbar code inside the css file.. nothing happened

Joachim Müller

post your code changes and maybe a link to your page, we're not mindreaders.

starrunner

#2
here's what I did..  I inserted the code for the scrollbar inside the css file
/* 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

Bacchus

Try this in your CSS:


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.

kateheaven

Quote from: Bacchus on January 02, 2006, 07:07:54 PM
Try this in your CSS:


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.

starrunner

Quote from: Bacchus on January 02, 2006, 07:07:54 PM
Try this in your CSS:


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