Senin, 05 Mei 2008

Friendster Div ID


/*-- Control Panel --*/
0

/*-- Photo Gallery --*/
1

/*-- Featured Friends--*/
2

/*-- More About --*/
6

/*-- Fan of Box --*/
7

/*-- Groups --*/
8

/*-- Media Box --*/
10

/*-- Reviews --*/
12

/*-- Blogs --*/
13

/*-- Google Ads--*/
14

/*-- Meettrail Box--*/
15

/*-- Testi & Comments*--/
18

For editing the contents.. use CSS..
These are the div ids which works but only for content boxes.. :wallbash:
CSS :

/*-- Control Panel --*/
content_0

/*-- Photo Gallery --*/
content_1

/*-- Featured Friends--*/
content_2

/*-- More About --*/
content_6

/*-- Fan of Box --*/
content_7

/*-- Groups --*/
content_8

/*-- Media Box --*/
content_10

/*-- Reviews --*/
content_12

/*-- Blogs --*/
content_13

/*-- Google Ads--*/
content_14

/*-- Meettrail Box--*/
content_15

/*-- Testi & Comments*--/
content_18

To use this:
as a css.. put a hash sign before it and place the css properties you want.. sample:
Code:

/*-- Change Font color in Control Panel --*/
#content_0 { color: #ffffff;}


For Friendster Div Classes:
/*-- Control Panel --*/
.controlpanel

/*-- Photo Gallery --*/
.photos

/*-- Featured Friends--*/
.friends

/*-- More About --*/
.moreabout

/*-- Fan of Box --*/
.fanof

/*-- Groups --*/
.groups

/*-- Media Box --*/
.scrapbook

/*-- Reviews --*/
.reviews

/*-- Blogs --*/
.blogs

/*-- Meettrail Box--*/
.meettrail

/*-- Testi & Comments*--/
.publiccomments


Tip: do not use..
Code:
/*-- Customize ControlPanel --*/
#0 { background: #000000; overflow-Y: auto; height: 100px}

why? because CSS for w3c do not accept div ids with number only..(i think so..)

instead use.. the div class.. =) so it will be compatible for IE, FF, Opera, Safari.)

Code:
/*-- Customize ControlPanel --*/
.controlpanel { background: #000000; overflow-Y: auto; height: 100px}

Related Post :



0 comments:

R