Archive for June, 2007

Header/ Banner

Saturday, June 30th, 2007

Kode Header diawali dengan /* — my topheader — */.

Untuk mendesign-nya, amati kode CSS Friendster blog yang urutannya seperti ini:

Head

Keterangan gambar:

width: 780px; —–> lebar header
height: 250px; —–> tinggi header
background: url(http://img374.imageshack.us/img374/2365/carheadgd9.jpg); —–> URL image header

Tahap men-desain header:

  1. Tentukan lebar & tinggi header yang kamu inginkan (780 pixel x 200 pixel adalah ukuran yang sering dipakai).
  2. Rancang desain kamu via Photoshop (atau sejenisnya). Kemudian save image as JPG.
  3. Upload gambar header kamu di website yang menyediakan image hosting.
  4. Copy-paste URL-nya di kode background untuk Header.

Contoh:

Jika URL image header kamu adalah http://contoh-header.jpg, maka kode yang harus kamu tulis adalah:

background: url (http://contoh-header.jpg);

Background

Saturday, June 30th, 2007

Kode Background diawali dengan /* — bgcolor of the blog — */.

Untuk mengganti background, teliti dan amati kode CSS Friendster blog yang urutannya seperti ini (klik image untuk melihat ukuran lebih besar):

Back

Keterangan gambar:

min-width: 780px; —–> Lebar blog.

font-family: Verdana, Arial, … ; —–> Jenis font yang digunakan pada blog (Main Body).

color: #000; —–> Warna tulisan pada blog (Main Body).

font-size: 12px; —–> Ukuran font pada blog (Main Body).

background: #000 url(http://img507.imageshack.us/img507/8678/carbackxs7.jpg) fixed; —–> Background blog.

Background dapat berupa warna atau image.

Background warna

Untuk background warna, kamu hanya perlu mengganti Web Color yang ada pada kode background (tanpa menyertakan kode URL-nya).

Contoh: Jika kamu ingin backround blog kamu berwarna putih, maka kode yang harus kamu tulis adalah:

background: #fffff; [note: mencantumkan tanda "#" adalah wajib!]

Ragam warna beserta kodenya bisa kamu lihat di sini.

Background Image

Untuk background berupa image, maka langkahnya adalah sebagai berikut:

1. Pilih image yang diinginkan.

2. Upload di website yang menyediakan image hosting.

3. Copy-paste URL-nya di kode background.

Contoh: URL image —> http://contoh-image.jpg, maka kode yang harus ditulis adalah:

background: url (http://contoh-image.jpg);

Designing your own template

Friday, June 29th, 2007

Untuk men-design sendiri template Friendster blog, ada 3 hal yang dibutuhkan:

1. Sebuah software untuk meng-edit gambar (Photoshop, Photo Impact, atau semacamnya)

2. Website untuk meng-upload gambar/ image hosting (Photobucket, Imageshack, atau semacamnya)

3. Sedikit pengetahuan tentang CSS (Cascading Style Sheet)

Kode CSS untuk Friendster blog adalah sebagai berikut [kode aku ambil dari template Lamborghini]:

<style type="text/css">

/* Original fresh CSS from friendster.com */

/* — scrollbar colors — */
html, body {
scrollbar-face-color: #000;
scrollbar-shadow-color: gray;
scrollbar-highlight-color: gray;
scrollbar-3dlight-color: gray;
scrollbar-darkshadow-color: black;
scrollbar-track-color: #616161;
scrollbar-arrow-color: white;
scrollbar-base-color: transparent;
}

/* — bgcolor of the blog — */
body
{
min-width: 780px;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000;
font-size: 12px;
background: #000 url("http://img507.imageshack.us/img507/8678/carbackxs7.jpg") fixed;
}
/* ——————————————————————————– */

/* — banner behind the photo and blog title — */
#banner
{
width: 0px; /* necessary for ie win */
background: #086763 url(http://i67.photobucket.com/albums/h316/slasherx12/transparent-bg_X.gif) repeat-x;
background-color: transparent;
}
/* ——————————————————————————– */

/* — repeating background image of the body — */
#container
{
width: 780px;
background: url(http://img402.imageshack.us/img402/2215/carmainow1.jpg) repeat-y;
}
/* ——————————————————————————– */

/* — bgcolor behind the topheader .. and i also use this to center my topheader on both IE and Mozilla — */
.friendster-banner
{
position: relative;
/*width: 780px;
height: 260px;*/
width:100%;
margin: 0;
border-bottom: 0px solid #546172;
padding: 0;
background:;
text-align: center;
}
/* ——————————————————————————– */

/* — my topheader — */
.friendster-banner-nav-wrapper
{
width: 780px;
height: 250px;
background: url(http://img374.imageshack.us/img374/2365/carheadgd9.jpg);
}
/* ——————————————————————————– */

/* — dont know what this is .. i think its the position of my topheader :) — */
.friendster-banner-nav
{
position: static;
overflow: hidden;
width: 780px;
margin: 0 auto;
text-align: left;
}
/* ——————————————————————————– */

/* — friendster logo (i think) :D — */
.friendster-banner-nav-logo
{
display: none;
}
/* ——————————————————————————– */

/* — Home | Blogs links — */
.friendster-banner-nav-links
{
float: right;
display: inline;
color: #393f3f;
font-family: arial, helvetica, sans-serif;
padding-right: 20px;
padding-bottom: 5px;
font-weight: bold;
font-size:0px;
}
/* ——————————————————————————– */

/* — says pretty much everything on the Home | Blogs section only! — */
.friendster-banner-nav-links a:link
{
color:darkblue;
}
.friendster-banner-nav-links a:hover,
.friendster-banner-nav-links a:active,
.friendster-banner-nav-links a:visited
{
color: #393f3f;
}
/* ——————————————————————————– */

/* — top ads — */
.friendster-banner-ad-wrapper
{
width: 780px;
height: 132px;
display: none;
}
/* ——————————————————————————– */

/* — top ads — */
.friendster-banner-ad
{
display: none;
}
/* ——————————————————————————– */

/* friendster footer (ads) */
.friendster-footer
{
width: 780px;
height: 132px;
display: none;
}
/* ——————————————————————————– */

/* — body ads — */
.friendster-body-ad
{
width: 780px;
height: 132px;
display: none;
}
/* ——————————————————————————– */

/* — module header or the little rectangular boxes with links (not all) on the right side of my blog — */
.module-header,
.trackbacks-header,
.comments-header,
.comments-open-header,
.archive-header
{
/* ie win (5, 5.5, 6) bugfix */
p\osition: relative;
width: 100%;
w\idth: auto;

margin: 0 0 1px 0;
padding: 10px 10px 10px 24px;
/*color: #f93;*/
color: white;
background: black;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
}

.module-header a,
.trackbacks-header a,
.comments-header a,
.comments-open-header a,
.archive-header a
{
color: #2b2e33;
text-decoration: underline;
}

.module-header a:visited,
.trackbacks-header a:visited,
.comments-header a:visited,
.comments-open-header a:visited,
.archive-header a:visited
{
color: #2b2e33;
}

.module-header a:hover,
.trackbacks-header a:hover,
.comments-header a:hover,
.comments-open-header a:hover,
.archive-header a:hover
{
color: #FFFFFF;
}
/* ——————————————————————————– */

/* — user photo — */
.banner-user
{
float: left;
overflow: hidden;
width: 64px;
margin: 0 15px 0 0;
border: 0;
padding: 0;
text-align: center;
}

.banner-user-photo
{
display:compact;
margin: 0 0 2px 0;
border: 0;
padding: 0;
background-position: center center;
background-repeat: no-repeat;
text-decoration: none !important;
}

.banner-user-photo img
{
width: 64px;
height: auto;
margin: 0;
border: 0;
padding: 0;
}
/* ——————————————————————————– */

/* — title of your blog — */
#banner
{
position: relative; /* ie 5 win */
p\osition: static; /* everything else */
}

#banner a { display:none; color: #fff; font-weight: bold; text-decoration: none; }
#banner a:visited { display:none; color: #fff; }
#banner a:hover { display:none; color: #989898; }
/* ——————————————————————————– */

/* — i forgot what this is :S — */
.module-powered .module-content
{
display: none;
margin: 0;
padding: 10px;
border: 1px solid #888899;
color: #fff;
background: #343f4a;
}
/* ——————————————————————————– */

/* Title of your Active Post  */
.entry-header
{
margin-left: 5px;
padding-left: 30px;
background: black;
color: #FFFFFF;
font-size: 18px;
font-weight: bold;
font-style: none;
}
/* ——————————————————————————– */

/* –h3 size (the title of the active post) — */
h3 {
text-align: left;
}
/* ——————————————————————————– */

/* — chars at the main body — */
div.entry-body {
text-align: justify;
}
/* ——————————————————————————– */

/* — haha forgot this too :) — */
.module-content
{
position: relative;
margin: 0px 0px 0px 0px;
}
/* ——————————————————————————– */

/* — color of the BODY of the lil rectangular boxes on my right side — */
div.module-content {
background: transparent;
}
/* ——————————————————————————– */

/* — bullet — */
ul.module-list li
{
margin: 0px 0px 15px 0px;
padding-left: 0px;
/*background: url(theme-beckett/li-bg.gif) 0 0.3em no-repeat;*/
background: transparent;
}
/* ——————————————————————————– */

/* — colors of the links on the right of my blog — */
.module-content a { color: #fff; font-weight: bold; }
.module-content a:visited { color: #616161; }
.module-content a:hover { background-color: yellow; }
/* ——————————————————————————– */

/* — divider image — */
#container-inner
{
margin: 0 10px 0 10px;
border-bottom: 1px solid #5b626a;
background: url() 297px 0 repeat-y;
}
/* ——————————————————————————– */

</style>

Untuk yang mengerti CSS, kode-kode di atas bisa langsung di-edit sesuai dengan yang diinginkan. Setelah selesai, tahap yang harus dilakukan adalah:

1. Klik Edit Configuration

2. Copy-paste kode di kolom Blog Description/Catchphrase

3. Klik Save —> Publish Your Blog

Tutorial tentang cara mengganti tampilan Background, Header & Main Body, akan aku tampilkan di posting berikutnya.

Useful links:

Photobucket

Imageshack

CSS Tutorial

Green [Friendster & Blogger]

Saturday, June 23rd, 2007

Friendster’s Users:

Aufzeichnen_1

* Klik image untuk melihat ukuran yang lebih besar. Gambar header diambil dari Free Web Page Headers.

* Tutorial bisa dilihat di sini.

* Sidebar harus di sebelah kiri!

* Kode yang harus di copy-paste:

<link rel="stylesheet" type="text/css" href="http://www.fileden.com/files/2007/2/22/807930/My%20Documents/sun13.css">

Blogger’s user:

Aufzeichnen_2

* Klik di sini untuk melihat preview-nya.

* Cara meng-install kode:

1. Sebelumnya, kode template yang lama harus di-back up dulu!!

2. Klik LAYOUT —> EDIT HTML

3. Di bagian paling bawah, klik REVERT TO CLASSIC TEMPLATE —> OK

4. Buka link ini.

5. Copy-paste kode-nya di kolom Template Blogger.

6. Klik SAVE TEMPLATE CHANGES.

I love BW!

Thursday, June 21st, 2007

Sudah hampir 3 minggu aku tidak buka Friendster. Disamping sibuk dengan 2 bos kecil-ku, program PhotoImpact tercintaku ngadat. Padahal, tanpa program itu aku sama sekali tidak bisa mendesign foto ataupun template.

Mohon maaf buat yang mengirim komentar, baik lewat blog-ku atau lewat shoutbox, karena belum sempat aku tanggapi. Untuk praktisnya, aku meniadakan "komentar" di blog-ku (mengingat aku jarang sekali membuka Friendster).

So, if you want to ask anything about blogs, template designs or just want to say "Hi", please use the Shoutbox on my left sidebar.

Thanks :)