hzlzh / Dot-B

WordPress Theme: Dot-B
http://wordpress.org/extend/themes/dot-b/
GNU General Public License v2.0
6 stars 3 forks source link

How to change the RSS icon image into your own image? #8

Open hzlzh opened 11 years ago

hzlzh commented 11 years ago

One way:

You can cover the old image named all.png by tools like Photoshop Location: http://xxxx.xxxx.com/wp-content/themes/dot-b/images/all.png

Another way:

Add a new CSS style to the theme file style.css to the bottom. Please save that image into your FTP and replace the image URL.

#header #rss {
    background: url("https://dl.dropboxusercontent.com/u/13642414/temp/facebook.png") repeat scroll 0 0 transparent;
}
#header #rss:hover {
    background: url("https://dl.dropboxusercontent.com/u/13642414/temp/facebook.png") repeat scroll 0 0 transparent;
}

then you can see the new image there like the screenshot belwo: after

hzlzh commented 11 years ago
#header #rss {
    display:none;
}

to remove that RSS icon.