我正在使用我购买的模板开发 WordPress。我在网站顶部添加了一个 div,其中唯一的元素是一个链接。
我需要让它与页面的其余元素对齐,所以我使用了 padding-left。问题是,当我调整窗口大小时,页面的其余元素正在移动,但我无法让链接以相同的方式移动。
我试过'位置'但没有运气。
这是我正在使用的代码:
<div id="extra_header">
<a class="specialLink" href="http://www.fitnessforum.gr">FITNESSFORUM.gr</a>
</div>
CSS
#extra_header{
height:26px;
background-color: #ac0003;
display: block;
}
a.specialLink:link {
color: #eeeeee;
font-size: 12px;
font-family: arial;
font-weight: normal;
font-style: normal;
line-height: 26px;
float: left;
margin-left: 260px;
}
a.specialLink:hover {
color: #FFFFFF;
font-size:12px;
font-family: arial;
font-weight:normal;
font-style:normal;
text-decoration:underline;
float: left;
margin-left: 260px;
line-height:26px;
}
这里还有一个网站链接:www.topgreekgyms.fitnessforum.gr