How to add logo in Thematic

时间:2011-02-23 作者:noel saw

我以前分享过黑客主题,尤其是用徽标替换网站标题,但对于最新的主题,我不知道在哪里编辑代码来添加我的徽标。我已经检查了标题。php和样式。css,但无法理解。

http://wordpress.org/extend/themes/thematic

感谢您的帮助!

3 个回复
最合适的回答,由SO网友:Chris_O 整理而成

最简单的方法是使用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 */
}

SO网友:unpossible

WordPress开发最佳实践是实现child theme 覆盖默认值。如果直接编辑专题文件,则在更新专题时将丢失更改。

请参阅Create child theme of Thematic WordPress Theme Framework 学习如何做到这一点。

SO网友:Rev. Voodoo

http://www.cozmoslabs.com/2009/05/28/add-a-header-image-to-thematic-the-easy-way/comment-page-2/#comments

我不确定这是否太过分了,但这似乎是一种很酷的方式。希望这仍然是最新的(从评论线程来看似乎是这样的)

它添加了一个用于上载标题图像的选项面板。。。。。

结束

相关推荐

Adding goodies to themes

如何在主题更新时向Arjuna-X等主题添加内容而不丢失?儿童主题是一种很好的方式,还是有其他选择?如果新版本的主题对我添加的功能具有本机支持,该怎么办?