
Friendster Div IDs
/*-- 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..
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:
/*-- 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..
/*-- 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.)
/*-- Customize ControlPanel --*/
.controlpanel { background: #000000; overflow-Y: auto; height: 100px}Last edited by xavierkym (2007-10-25 01:40:03)


wooh, thanks xavier!

-Offline- |


-Offline- |

anyway.. did u check it in IE guys??? haha.. im not sure if it works in IE 7.. but im sure in IE 6.. it wont.. ![]()
edited:
checked in Opera 9.4 its PERFECT.
checked in FF2+ working great 
Last edited by xavierkym (2007-10-19 02:07:22)


^
I'm using MSIE 6, and it does work! I think Ordinary CSS codes will work on all browsers
Nice nice, but the div ids of the navigation, sub navigations, footers... didn't changed? just the main and side boxes?
Friendster is doing their best to overide our codes hahahaahah....
Just wondering... I tried to view-source my Profile and I noticed that their javascript codes uses javascript1.3 as a script language... what does that mean? hahaha
<script language="Javascript1.3" type="text/javascript">
js codes here
</script>
Thnx kim! ![]()
Last edited by allvinn (2007-10-19 02:02:41)
-Offline- |

umm xav where's the div id for review huhuuh 

help me..
my layout codes aren't working. everything is missing.
anyone, help me!
-Offline- |

Wow really fast kuya, I was just about to post these codes lols
Anyways thanks! ![;]](img/smilies/slywink.gif)
-Offline- |

lolerz.. i forgot the reviews... here it is:
/*-- Reviews --*/
content_12


But there's something bothering me.... I'm using this code:
/* MOVE MEDIA BOX */
#content_10 {
position: relative;
bottom: 1310px;
right: 407px;
}
.. to move my Media Box Section, acting as a sidebox, but it doesn't move the box, it just moves the CONTENT of the box.. get it?
Here:
the content (mp3 player) of my media box moved...
...but the box remains in place

I'm using pure css codes to tweak my profile to the max
I'm tired of those JS codes hahaha
Last edited by allvinn (2007-10-19 02:16:51)
-Offline- |

-Offline- |

if i edit my css in ripway??? will it be affected with the update???


-Offline- |

it's really a bad idea to move the boxes using css..
because it will differ in different screen resolutions.. 


i love my IE6 codes works for me....doesn't that much headache..thanks xavier,ur a savior....hehehehe..it does rhyme though..

-Offline- |

lei9182 wrote:
if i edit my css in ripway??? will it be affected with the update???

-Offline- |

@xavierkym
I know that... hahaha everytime I move boxes, I make sure I view my profile from I different account, on different screen resolutions, aside from 1024x768.. and I've done many trial and errors to position and adjust my Media box to make it really look like a sidebox 
Last edited by allvinn (2007-10-19 02:19:59)
-Offline- |
how about page background and master boxes??
-Offline- |

ah i see... your tweaks will be affected if you edit it in your profile ryt???


-Offline- |

@barbz
for the page background
body {
background-image: url(URL of YOUR IMAGE);
background-attachment: fixed;
background-position: center center;
background-repeat: repeat;
background-color: transparent;
}
for the master boxes
.commonbox, .commonbox_noborder {
background: transparent ur(URL of YOUR IMAGE);
}
.evenrow {
background: transparent url(URL of YOUR IMAGE);
}
-Offline- |