Tag Archives: style

如何给站点添加Icon

站点的Icon是除了Logo的另一个图形标志
好的Icon能够很快得在收藏夹中凸显出来
本站现在还是暂时使用Inove自带的Icon
新的Icon正在制作中

步骤 For Wordpress:
> 只要编辑模板中的Header.php即头部
> 找到标签

1
<title>

> 当然非Wordpress站点可能在index文件 实际上是title标签在哪就插哪
> 在其 当然你也可以把以下函数加在地址段中 可用来指向当前模板根目录

1
<?php bloginfo('template_directory');?>

怎样给图片加边框

打开模板文件夹里的style.css,然后搜索 img{ 换成以下代码就可以了。

1
2
3
4
5
6
7
img {
border:#cc9 1px solid;
padding:3px;
}
a img {
border-bottom: #b8860b 1px solid;
}

第1页/共1页1