Wordpress更改主题的Css

时间:2012-03-05 05:25:36

标签: css wordpress themes

我可以问一下如何更改主题的CSS以使页面看起来像http://katiefreiling.com/这个网站的导航是紫色的,直到左右角都没有延伸。我的导航似乎从左右角延伸,我的内容和页脚也是如此。是否可以使用与上述链接类似的样式或格式?在此先感谢这是我的网站http://michelebrunello.com/

1 个答案:

答案 0 :(得分:1)

最好先学习这些概念,然后再提问。我不知道你的中间是什么图片,但根据你的演示网站,我已经在你的CSS中添加了一些css规则,请参阅下面的css规则并尝试添加你的CSS。

  1. 第35行white.css

    #topmenu {
    background: none repeat scroll 0 0 #212983;
    border-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 0;
    margin-left: auto;
    margin-right: auto;
    width: 940px; }
    
  2. 第11行white.css

    #footer-widgets {
    background-color: #FAFAFA;
    border-top: 1px solid #E6E6E6;
    margin-left: auto;
    margin-right: auto;
    width: 960px; }
    
  3. 第901行style.css

    #footer {
    background: url("images/bgr-box-trans.png") repeat-x scroll 0 0 #E4E2DB;
    border-top: 1px solid #EEECE6;
    font-size: 11px;
    height: 32px;
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0; }
    
  4. 首先尝试实现css。