Collect common and practical CSS special effects codes for Baidu Space. Mastering these will make you an expert!

by changwenguang on 2008-05-12 13:03:06

Collect common and practical CSS special effects codes for Baidu Space. Mastering these will make you an expert!

1. How to change the background of the space?

Open the advanced settings, then customize the CSS, and look at the 3rd and 4th lines:

```css

header div.lc {background: url(header div.lc {background: url([IMG]http://img.baidu.com/hi/temp13/hdl.gif[IMG]) no-repeat}

```

The image on the third line is the picture on the left side of the title bar, while the fourth line is the right side of the title bar. It's recommended that you just replace the fourth line.

Find an image, copy its URL address, and replace the [IMG]http://img.baidu.com/hi/temp13/hdl.gif[IMG] in the fourth line with it.

2. How to beautify your Baidu Space mouse cursor?

Replace the first line with:

```css

body {background:#000; CURSOR:

```

(You can add a custom cursor style or image URL after "CURSOR:" to define a unique mouse pointer for your space.)