Jump to content
  • 0

Проблема со фоном в футере


wcp
 Share

Question

Ситуация.

В шапке сайта фоном лежит изображение, прописанное в css:

body {
padding: 0;
margin: 0;
background: #003D73 url(img/bg2.jpg) no-repeat center top;

width: 100%;
display: table;
}

Макет простой и состоит на данный момент буквально из двух таблиц (которые лежат на фоне img/bg2.jpg):

————————--

| основной контент сайта |

————————--

————————--

|футер |

————————--

Вот в футер, в отдельную таблицу, хочу добавить еще одно фоновое изображение, поверх которого вывести телефоны, контактные данные и пр. Но это фоновое изображение не появляется ибо body забивает собой всю страницу.

Как решить эту проблему?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

body {
padding: 0;
margin: 0;
/*background: #003D73;*/
background: #003D73 url(img/bg2.jpg) no-repeat center top;

width: 100%;
display: table;
}

сама страница:

<html>
<head>
</head>
<body>

<table width="1000" border="0" align="center" style="margin-top: 0px;">
<tr><td>основной контент страницы</td></tr></table>

<br /><br />

<!-- footer -->
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="400" style="background-image: url (img/bg3.jpg);"></td>
</tr>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0

доктайп есть, я просто не стал копировать всё лишнее.

На скрине видно, что текст вывелся, а фоновый рисунок bg3.jpg - нет.

footer.png

хм.. background-image: url работать отказался, изображение вывелось через

<td align="center" height="400" style="color: #FFF;" background="img/bg3.jpg">здесь должен быть футер </td>

Edited by wcp
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