Jump to content
  • 0

background-image и кривые руки


WabFad
 Share

Question

Всем привет, наткнулся на такую проблемку. Верстаю свой первый дизайн, предварительно пройдя самоучитель css. Сильно не бейте если вопрос очень нубский. Так вот.

html код выкладывать не буду так как там просто стандартные классы footer header и т.д.

в вот css код такой

* {
margin: 0;
padding: 0;
font-size: 100%;
}
body {
background-color: #fff111;
height: auto;
min-height: 100%;
}


#header {
padding: 30px;
}

#content {
margin: 10px auto;
width: 700px;
color: #000;
background-color: #fff;
}

#footer {
height: 40px;
width: 100%;
position: absolute;
left:0;
bottom: 0;
background-image: url(images/foot.png) repeat-x #000;
}

но картинка на фон футера не накладывается. если ниже прописать

background-color: white;

то цвет заливается. вопрос что я делаю не так?) дизайн под wordpress, файлы хранятся в wp-content/themes/mytheme

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Большое спасибо, и правда работает, но почему просто бекграунд? за фоновое изображение ведь отвечает background-image

Потому что ты указываешь еще и repeat и цвет фона. А за эти функции отвечают background-repeat и background-color.

background - это собирательное свойство.

http://htmlbook.ru/css/background

Edited by buddah
Link to comment
Share on other sites

  • 0

еще вопрос, код футера тот же, при добавлении большего количества новостей на сайт, футер не двигается вместе с низом браузера, а остается на своем месте.

подскажите как сделать что бы футер был прибит к полу, но не на одном месте?

для наглядности во скрин

http://s42.radikal.ru/i098/1107/6d/f25a51b34832.jpg

Edited by WabFad
Link to comment
Share on other sites

  • 0

как сделать что бы футер был прибит к полу, но не на одном месте?

Как-то так:

<div id="wrapper1">
<div id=wrapper2>
...content
</div>
</div>
<div id="footer"></div>


html,body {height: 100%}

#wrapper1{
min-height: 100%;
margin-bottom: -200px;
}

#wrapper2 {
padding-bottom: 200px;
}

#footer {
height: 200px;
}

Edited by rookie
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy