Team Hawk Karin
I need help with two things.
1. Changing scroll-bar color.
2. Making my about me and comment boxes scroll ones.
Will someone, please, help me?
Thanks.
To change scrollbar color, you'd use this (replace the XXXXXX's with hex color codes) or use a scrollbar color generator online, generate one, and then take the CSS code out of the code that is generated.
body {scrollbar-3dlight-color:#XXXXXX;
scrollbar-arrow-color:#XXXXXX;
scrollbar-track-color:#XXXXXX;
scrollbar-darkshadow-color:#XXXXXX;
scrollbar-face-color:#XXXXXX;
scrollbar-highlight-color:#XXXXXX;
scrollbar-shadow-color:#XXXXXX;}
To make your About Me and Comment boxes scroll, you would use these (change the XXX values to the desired height.)
#id_about{height:XXXpx;overflow-scroll;overflow-x:hidden;overflow-y:auto;}
#id_comments{height:XXXpx;overflow-scroll;overflow-x:hidden;overflow-y:auto;}