如何在WordPress中设置margin-top proeprly?

时间:2017-11-21 09:25:13

标签: html css wordpress wordpress-theming

我正在制作WP自定义主题的页脚。我有页脚div(在其中放置组件)。我还有一个徽标div(我的徽标在哪里)。我需要从页脚div的begening到徽标div之间的距离为12px。

我正在使用它:

<div class="footer">
  <div class="footerlogo"> 
  <img id="pic" src="<?php bloginfo('template_url') ?>/img/footer_logo.png">
    </div> .......


.footerlogo{ margin-top:30px;}

它没有表现出任何不同之处。什么是正确的方法呢?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以在页脚div上使用填充,例如:

.footer {
    padding-top: 12px;
}

这会在.footer.footerlogo div元素之间添加空格。

https://jsfiddle.net/ss7Lp2nd/