View Full Version : I need help with my guild layout.


buffythevamp50
04-09-2004, 10:24 PM
I have a great layout in my guild, but it just reached the max amount of characters, and I've barely even gotten any writing. Most of the space, is my continuous input of what color the div scrollbars should be. Is there a way to make all the scrollbars the same color without typing it in a billion times? Is it also possible to do this with the font size and color?

Thanks for the help :)

westernrider
04-10-2004, 05:57 AM
you could use CSS... and you could also make the font color all the same thing to also save space

<style type="text/css">

body {cursor:your cursor;
scrollbar-face-color: your color;
scrollbar-shadow-color: your color;
scrollbar-highlight-color: your color;
scrollbar-3dlight-color: your color;
scrollbar-darkshadow-color: your color;
scrollbar-track-color: your color;
scrollbar-arrow-color:your color;

* {font-family:your font ; font-size: your font size; color: your font color; text-decoration:your text decoration;}

A {font-family: your font; font-size: your font size; color: your color; text-decoration:your text decoration;}

A:link {font-family: your font; font-size: your font size; color: your color; text-decoration:your text decoration;}

A:active {font-family: your font; font-size: your font size; color: your color; text-decoration:your text decoration;}

A:visited {font-family: your font; font-size: your font size; color: your color; text-decoration:your text decoration;}

A:hover {font-family: your font;
font-size: your font size;
color: your color;
text-decoration: your text decoration;}

All the things in red you change to fit your site :)


</style>

http://www.lissaexplains.com/css.shtml

go there for more help

buffythevamp50
04-10-2004, 09:53 PM
Thank you for your help westernrider. It really helped me a lot.