试图将我的博客标题向上移动

发布于 2024-09-11 06:21:32 字数 466 浏览 6 评论 0原文

我正在尝试将我的博客标题移高一点。如果您查看我的博客,您会看到标题和内容。字幕太靠下了。

http://www.melissavenable.blogspot.com

标题(已婚小夫人)应位于粉红线上方的绿松石区域和副标题(有些东西......)应该位于粉红色线的正下方,但仍在当前位置的上方。有人建议我将这个

.descriptionwrapper {padding-bottom: 50px;}

或这个

.descriptionwrapper {margin-bottom: 50px;}

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

谢谢你! 梅丽莎

I am trying to move my blog title up a little higher. If you will look at my blog you will see that the title & subtitle are too far down.

http://www.melissavenable.blogspot.com

The title (Little Mrs. Married) should be in the turquoise area above the pink line & the subtitle (some things...) should be right under the pink line, but still above where it is now. It was suggested me to put this

.descriptionwrapper {padding-bottom: 50px;}

or this

.descriptionwrapper {margin-bottom: 50px;}

in the HTML code above where it says but that didn't work. Any other ideas?

Thank you!
Melissa

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗梦空间 2024-09-18 06:21:32

您需要

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;;
}

You need to remove

padding: 60px 0 0;

in your #header h1 style.

Should look like:

#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;;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文