2

我正在尝试将我的博客标题上移一点。如果您查看我的博客,您会发现标题和副标题太低了。

http://www.melissavenable.blogspot.com

标题(Little Mrs. Married)应该在粉线上方的绿松石区域,而副标题(一些东西......)应该在粉线的正下方,但仍高于现在的位置。有人建议我把这个

.descriptionwrapper {padding-bottom: 50px;}

或这个

.descriptionwrapper {margin-bottom: 50px;}

在上面的 HTML 代码中它说但那不起作用。还有其他想法吗?

谢谢!梅丽莎

4

1 回答 1

4

你需要删除

padding: 60px 0 0;

以你的#header h1风格。

应该看起来像:

#header h1 {
    margin:5px 5px 0px 20px;
    line-height:1.2em;
    text-align:left;
    text-transform:uppercase;
    letter-spacing:.2em;
    font: normal normal 220% 'Times New Roman', Times, FreeSerif, serif;;
}
于 2010-07-24T21:47:16.623 回答