最简单的方法是使用css背景图像作为徽标。
转到默认设置的第65行。css和更改
#blog-title {
font-family:Arial,sans-serif;
font-size:34px;
font-weight:bold;
line-height:40px;
}
对此:
#blog-title {
background: url(images/path_to_your_logo.png) no-repeat;
display:block;
width: 00px; /* enter logo width */
height: 00px; /* enter logo height */
text-indent: -999em; /* replaces blog title with your logo */
}