试图将我的固定横幅放在我的博客上

时间:2014-01-11 03:10:02

标签: css center tumblr fixed banner

在本网站上研究过去一周代码之后的代码之后,我还没有找到一个以固定横幅为中心的代码。我现在处于斗智斗勇的境地,拼命寻求帮助。

这是我到目前为止所拥有的:

.heading {
    position:fixed;
    z-index:1;
    overflow:hidden;
    color:{color:background};
    background-color:{color:background};
    top:0px;
    left:5%;
    right:95%;
    margin-left:-570;
    font-size:11px;
    width:1030px; 
    height:auto;
    text-align:center;
    border-bottom:2px solid {color:text};
}

到目前为止这就是它的样子:

http://m-orning-star.tumblr.com/

任何输入都会很精彩。谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

.heading {
  left: 0px;  /* Changed this to 0 */
  right:95%; /* REMOVE this line */ <<<<<<<<<<<<<<
  margin-left: 0; /* Changed this to 0 */
  font-size:11px;
  width: 100%; /* Changed this to 100% */
  height:auto;
}