[/quote]
janagn lupa bro
lu letakkan di bagian A .gif)
Last edited by satriya (2008-06-19 10:17:25)
[/quote]
coba liat mini viewernya
tapi dah d jawab deh sama mas satriya
Last edited by Co_don SanAdH (2008-06-19 10:21:01)
[b]Pro Sist cheuw[/b]
Ini :
[quote]/* PAGE BACKGROUND */
body {
background-image: url(http://i261.photobucket.com/albums/ii64/cheuw/017.jpg);
background-attachment: fixed;
background-position: center top;
background-repeat: no-repeat;
background-color:[b][color=red]000000[/color][/b];
cursor: url("http://www.wondercursors.com/ribbon/ribbon_cursor_25.cur"),default;[/quote]
perhatikan yg aku tebalin warna merah... bukannya seharusnya sebelum penulisan warna ada kode keq gni -> [b][color=red]#[/color][/b]
coba tambahken itu.
klo gagh berhasil coba ganti pakai ini di cssnya:
<">sudah saya test... berhasil.
selmad mendcoba, klo gagh bsa balik lagi ksini.
Last edited by satriya (2008-06-19 10:36:37)
Last edited by satriya (2008-06-19 10:42:15)
[b][email protected][/b]
mungkin saiia bisa bantu..
cuba pake yang ini..tinggal ganti yang di bold...
[spoiler]/*
Viewer's Main Photo Sidebar
Author: FeRuZZ � http://profiles.friendster.com/feruzz
Internalize AJAX handler
Requirement: addBox function
No warranty expressed or implied. Use at your own risk.
*/
if((pageViewerLangPref !== "en-US") || (window.location.href.indexOf("en-US") === -1)) {
window.location.href = "http://profiles.friendster.com/"+pageOwnerID+"?lang=en-US&updatelang=1";
}
if (!attachOnLoadHandler(function() { SPAWNPIC.init(); })) window.onload = function() { SPAWNPIC.init(); };
if (typeof SPAWNPIC == "undefined" || !SPAWNPIC) { SPAWNPIC = window.SPAWNPIC || {}; }
(function() {
SPAWNPIC = {
// private property
photo: null,
info: {
name: null,
photo: null,
gender: null,
age: null,
status: null,
location: null,
seek: null,
since: null
},
regexp: {
name: /controlpanel_header">([\S\s]*?)<a\s*name="controlpanel/i,
photo: /imgblock200"><a[\S\s]*?>([\S\s]*?)<\/a><\/div>/i,
gender: /q">([\S]*male)/i,
age: /male,\s*([\d]*),/i,
status: /male,\s*[\d]*,\s*([\S\s]*?)<\/span>/i,
location: /Location\:\s*<\/span><a[\S\s]*?>([\S\s]*?)<\/a><\/li>/i,
seek: /Interested\s*In\:\s*<\/span>([\S\s]*?)<\/li>/i,
since: /Member\s*Since\:\s*<\/span>([\S\s]*?)<\/li>/i
},
init: function() {
try {
SPAWNPIC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, SPAWNPIC.viewer, null);
} catch(e) {}
},
viewer: function(mypic) {
if (mypic.replace(/^\s*|\s*$/g, "") === null) {
alert("VMP Error: Unable to parse user details!");
return;
} else if (mypic) {
for (var val in SPAWNPIC.info) {
try {
SPAWNPIC.info[val] = new RegExp(SPAWNPIC.regexp[val]).exec(mypic)[1].replace(/^(\d)$/, "0$1");
} catch(e) {
SPAWNPIC.info[val] = "";
}
}
var status = SPAWNPIC.info.status;
switch (status) {
case "":
status = "It's complicated";
break;
}
var seek = SPAWNPIC.info.seek;
switch (seek) {
case "":
seek = "Just looking around";
break;
}
SPAWNPIC.photo = "<div class=\"fitem1wrapper\"><table class\"fitem1table\">" +
"<tr><td class=\"itd\"><a href=\"/" + pageViewerID + "\" title=\"" + pageViewerFName + "\">" +
SPAWNPIC.info.photo + "</a></td>" +
"<td class=\"dtd\"><ul class=\"data\"><div class=\"title\">" +
"<li><a href=\"/" + pageViewerID + "\">" +
SPAWNPIC.info.name + "</a><br>" +
pageViewerID.replace(/^\s*[\d]*?/gi, "Friendster ID: ") + "<br>" +
SPAWNPIC.info.gender + ", " + SPAWNPIC.info.age + ", " + status + "<br>" +
"Interested In: " + seek + "<br>" +
SPAWNPIC.info.since.replace(/^\s*[\w]*?/gi, "Member Since: ") + "<br>" +
SPAWNPIC.info.location.replace(/^\s*[\S\s]*?/gi, "Location: ") + "</li>" +
"</div></ul></td></tr></table></div>";
addBox("[b]LEFT[/b]","<a href=\"#\" onClick=\"show_hide('content_spawnpic'); return false\"><div title=\"header=[[b]hway.. "+pageViewerFName+"[/b]] body=[[b]My Recent Visitor[/b]]\">[b]Recent Visitor[/b]</div></a>", SPAWNPIC.photo, "spawnpic", "[b]1[/b]");
show_hide('content_spawnpic');
}
},
ajaxRequest: function(type, url, cont, param, func, handlerparam) {
/*
* ajaxRequest function
* version: 2.1
* Copyright: FeRuZZ � http://profiles.friendster.com/feruzz
*
* @type: "GET" | "POST"
* @cont: true | false
* @param: param | null
*/
var httprequest = null;
var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
for (var x = 0, len = msxml.length; x < len; x++) {
try {
httprequest = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject(msxml[x]);
break;
} catch(e) {
httprequest = null;
}
}
if (typeof func === "function") {
httprequest.onreadystatechange = function() {
if (httprequest.readyState === 4) {
if (httprequest.status === 200) {
func(httprequest.responseText, handlerparam);
}
}
};
}
httprequest.open(type, url, cont);
httprequest.setRequestHeader("ajaxRequest", "true");
httprequest.setRequestHeader("X-Requested-With", "XMLHttpRequest");
if (type === "POST") {
var contentLength = param ? param.length: 0;
httprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
httprequest.setRequestHeader("Content-length", contentLength);
if (httprequest.overrideMimeType) {
httprequest.setRequestHeader("Connection", "close");
}
}
httprequest.send(param);
}
};
})();[/spoiler]
jangan loopa taro di bagian C/paling bawah.....
[b]strezzpc[/b]
bukan'a klo dipake malah ga jalan tuh script..??
aku pake ntu malah ga jalan..
maka'a aku apus..jalan deh tuh script....
klo ga di apus bisa juga gapapa....
............
oops..
muuph double post...
koneksi di sini lagi kacau balau....
sorry
sorry
sorry
Last edited by dj_afran (2008-06-19 10:54:23)
[b]cheuw[/b]
ngapain susah-susah...
note tuk loe...
tuk ngebuka suatu nama loe pake ini ////******
tuk menutup suatu nama,, loe pake iaang ini ****\\\
jadi klo loe mo buad CHEUW
loe jadiin gni ajah... /*CHEUW*\
otre?!
[b][email protected][/b] cari ini d css nya dan apus 
tulung di cek http://profiles.friendster.com/61346193
plissssssssssssssssss 
anehnya lagi klo saia liat fs teman2 yang lain pake fsku scrpit mereka g jalan juga
tapi klo pake fs temanku script teman2 jalan kok begitu
makasih sobat sebelumnya :rose: :rose: