|
Post by Wild Hooves on Dec 26, 2007 10:12:22 GMT -5
What else can CSS do for a Proboards? Right now, all I know (basically) is this:
<style type="text/css"> a:hover { color: #6FC3FF; text-decoration: underline; }
.titlebg { background-image: url(TITLE_GRAD_URL); background-repeat: repeat; }
.catbg { background-image: url(CAT_GRAD_URL); background-repeat: repeat; }
.menubg { background-image: url(MENU_GRAD_URL); background-repeat: repeat; } </style>
For gradient sizes for the three above (menu, cat., and title) what size(s) do you suggest?
|
|
Blink
Addicted Member
Posts: 1,699
|
Post by Blink on Dec 26, 2007 12:20:21 GMT -5
With css you can change the background color, scroll bar color, text box color, button color, lots of things I've used.
Here is some properties I copy-pasted, try play around with them.
BODY { background-position: center; background-repeat: repeat-y; scrollbar-face-color:3F6386; scrollbar-highlight-color:678DB2; scrollbar-3dlight-color:678DB2; scrollbar-darkshadow-color:000000; scrollbar-shadow-color:000000; scrollbar-arrow-color:000000; scrollbar-track-color:678DB2; } TEXTAREA { background-color: AFC5D9; font-family: Verdana; font-size: 10; border-color: 000000; border-width: 1; border-style: solid; }
INPUT { background-color: AFC5D9; font-family: Verdana; font-size: 10; border-color: 000000; border-width: 1; border-style: solid; } SELECT { background-color: AFC5D9; font-family: Verdana; font-size: 10; }
|
|