|
|
|
|
|
|
Posted: Thu Oct 26, 2006 7:23 pm
Here are a series of question I have been dying to know:
How do you get rid of the space at the bottom of your profile?
How do you change how the comments look? (As in like the color of the comments and the border and etc.)
How do you change the way your details look?
How do you make your scroll bars transparent?
How do you make the main scroll bar and the scroll bar for your sections different? (Like when the scroll bar sections are transparent but the main one isn't and etc.)
Sorry for so many questions. sweatdrop
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Sun Oct 29, 2006 8:07 pm
Changing the looks of the comments:
For the odd comments: #comments .caption {border: solid 1px #______; background-color: #______; } #comments .caption .message {color: #______; } For the even ones: #comments .caption2 {border: solid 1px #______; background-color: #______; } #comments .caption2 .message {color: #______; } The blue parts are the parts you change. The first line of code changes border and background color. The second line is for the font color.
- - -
What parts of the details?
- - -
This tutorial is a great place to learn about color scrollbars. It's what I learned off of and it does talk about transparency.
To alter the body scroll bar you'd stick the code on the html and body elements: body, html { scrollbar code here; } The code for individual sections goes into the section code. For instance, the code for the about section would go on #about: #about { scrollbar code here; } Happy Halloween!
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Sat Nov 04, 2006 11:44 am
Yeay! Kyouya! In your siggy!
How do you make the main scroll bar and the scroll bar for your sections different? (Like when the scroll bar sections are transparent but the main one isn't and etc.)
I just put the code for scrollbars seperately into each section, but your code may look different.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Sun Nov 05, 2006 10:20 am
change your profile to old school.and add a new theme
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Sun Nov 05, 2006 10:53 am
Thank you everybody! whee heart
Ava R.: All the details. Like the header for 'Location, Birthday, Last Login, and etc' how do you change the background colors for them?
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Sun Nov 05, 2006 2:23 pm
The Last Login section down to "Member Since" is dl#stats. The other half (Location to Interests) is dl#info. All the titles (Last login, total posts, etc.) are dt's and the info under each title is a dd.
So, if you wanted to add a background to all the title areas, you'd use a code like this: #details dt {background-color: #FFFFFF; } Then, the code for changing the info line would look like this: #details dd {background-color: #000000; } If you wanted to give different backgrounds to the sections based on which list they're in, your codes would look something like this: #details #stats dt {background-color: #000000; } #details #info dt {background-color: #FFFFFF; } Does that make sense?
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Tue Nov 07, 2006 6:34 pm
Thank you! And for the transparent part about the scrollbar...what's an iframe tag? 'Cause it says I need to put a code in there and I don't know what it is...
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Tue Nov 07, 2006 10:03 pm
Hmm...you shouldn't need to worry about that. I've had it work where I just stuck the scrollbar code onto the right element and that was it.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Nov 08, 2006 6:32 pm
The right element....? o.o [Sorry for being slow...]
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Thu Nov 09, 2006 1:13 pm
My fault. I slip into jargon speak sometimes.
By element I just mean the section. If I wanted a transparent scrollbar on the about section, all I need to do is put my scrollbar code into #about: #about {scrollbar code here} Is that clearer?
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Fri Nov 17, 2006 7:59 pm
OH OK! Thank you! I get it now! mrgreen
|
 |
 |
|
|
|
|
|
|
 |
|
|
|
|
|