Blogger中小部件之间的空间很大

时间:2022-09-21 19:36:48

I have a problem regarding my blogger website. There are annoying spaces above some widgets.

我的博主网站有问题。某些小部件上方有令人讨厌的空间。

1) On a post page (for example), the blog post date does not align with my left and right sidebar. I would like the left sidebar (search box), the post (date, title etc.) and the right sidebar (black box) to be evenly aligned at top.

1)在帖子页面(例如)上,博客发布日期与我的左侧和右侧边栏不对齐。我希望左侧边栏(搜索框),帖子(日期,标题等)和右侧边栏(黑框)在顶部均匀对齐。

2) At the very bottom of the page, there are credit links (© text, about, disclaimer, contact etc.) that are also quite far down from the rest of the content. Again, I would like that space to be omitted so all looks evenly aligned.

2)在页面的最底部,有信用链接(©text,about,disclaimer,contact等),这些信息链接与其他内容相差甚远。同样,我希望省略该空间,以便所有看起来均匀对齐。

I would be really thankful is somebody could help me with this! :) Thanks, Eva

我真的很感激有人可以帮我这个! :)谢谢,伊娃

1 个解决方案

#1


1  

the blog post date does not align with my left and right sidebar

博客发布日期与我的左侧和右侧边栏不一致

Remove the top margin here:

删除上边距:

.widget {
   margin: 30px 0;
   _margin: 0 0 10px;
}

At the very bottom of the page …

在页面的最底部......

Remove some of the top padding here

在这里删除一些顶部填充

.footer-inner {
    padding: 30px 15px;
}

and perhaps bottom padding here:

也许在这里填充底部:

.main-inner {
    padding-top: 35px;
    padding-bottom: 65px;
}

#1


1  

the blog post date does not align with my left and right sidebar

博客发布日期与我的左侧和右侧边栏不一致

Remove the top margin here:

删除上边距:

.widget {
   margin: 30px 0;
   _margin: 0 0 10px;
}

At the very bottom of the page …

在页面的最底部......

Remove some of the top padding here

在这里删除一些顶部填充

.footer-inner {
    padding: 30px 15px;
}

and perhaps bottom padding here:

也许在这里填充底部:

.main-inner {
    padding-top: 35px;
    padding-bottom: 65px;
}