0

我添加/替换/删除什么代码来改变marketbot.net的大小

4

2 回答 2

0
 #header {
            background: #FFFFFF
            width: 100%;
            padding: 30px 0px;
            position:relative;
            margin-top: 80px;
            margin-bottom: 5px;
        }

我没有完全理解你的问题,但我试图回答它。

你需要编辑

 #header {
        background: #FFFFFF
        width: 100%;
        padding: 20px 0px;
    }
于 2013-03-31T22:57:21.277 回答
0

Are you talking about the global navigation menu or the slider that is on the page? The slider looks like it has a margin problem (in both I.E. 8 and Google Chrome).

I adjusted the css class named content-top to the following, so it isn't overflowing into the header:

.content-top
{
  position:relative;
  margin-top: 80px;
  margin-bottom: 5px;
}

After I made the adjustments, it looks somewhat cleaner in the slider and header divs.

于 2013-03-31T23:04:52.050 回答