如何在HTML中移动显示的文本?

时间:2016-01-20 12:30:30

标签: html wordpress plugins

我有以下site,因为可以看到gif在订阅框下面,我查看了以下代码:

<body class="<?php echo $body_classes ? $body_classes : ''; ?>">
<div class="container" style="width: 40%; margin: 0 auto;">
    <a href="https://www.instagram.com/idleslidegloves/" style="float: left;"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/instagram-22.png"  alt=""></a>
    <a href="https://www.facebook.com/idleslidegloves/" style="float: right;"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/facebook-7-22.png" alt=""></a>
</div>
        <div class="wrap">
            <?php if (!empty($heading)) { ?><h1><?php echo stripslashes($heading); ?></h1><?php } ?>
            <?php if (!empty($text)) { ?><h2><?php echo stripslashes($text); ?></h2><?php } ?>

如何删除空白区域或将整个“订阅”框移到上方,以便在较低分辨率下不会显示在GIF下方。如此处所见http://prntscr.com/9shcj8。注意这些编辑是通过现有插件进行的。

1 个答案:

答案 0 :(得分:0)

您需要编辑样式表(或style标记)而不是html代码。将您的包裹类边距更改为anthoer值:

.wrap{
    margin:45px auto 0; //for example
}