Jump to content
  • 0

Как зафиксировать логотип


Sanchezzz
 Share

Question

17 answers to this question

Recommended Posts

  • 0

Так, в чем проблема собственно? Подстройте top и left по месту и все

Проблема в том что при прокрутке сайта на другие разрешения мониторов логотип скачет относительно позиций которые указанны в стиле!

Если бы я знал как, подстроить...

Link to comment
Share on other sites

  • 0

Полный стиль:

body{
width:100%;
height:100%;
min-width:1200px;
background-image: url("images/Background.png");
background-position: absolute;
background-size: 100% 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-origin: padding-box;
background-clip: content-box;
}
div {
list-style: none;
margin: 0;
padding: 0;
}
#cs_logo{
position: absolute;
top: 15%;
left: 10%;
margin: 10px;
}

Так как шапка сайтеа резиновая, логотип находится на краю таблицы, надо логотип привязать к краю таблицы как на рисунке и при просмотре на других мониторах не ездил в разные стороны.

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

  • 0

как вариант, в шапке в таблице создай еще одну сроку, сунь туда картинки с меню и убери абсолютное позиционирование у картинок

вот попробуй



<tr>
<td>
<div id="cs_logo">
<img width="150" height="150" src="images/cs_logo.png">
</div>

<div id="menu">
<ul>
<li>
<a class="home" href="#">
<span>Главная</span>
</a>
</li>
<li>
<a class="maps" href="#">
<span>Карты</span>
</a>
</li>
<li>
<a class="models" href="#">
<span>Модели</span>
</a>
</li>
<li>
<a class="texture" href="#">
<span>Текстуры</span>
</a>
</li>
<li>
<a class="links" href="#">
<span>Ссылки</span>
</a>
</li>
</ul>
</div>

<div id="csm_logo">
<img width="150" height="150" src="images/csm_logo.png">
</div>

</td>
</tr>


в стилях пишешь следующее:


#cs_logo {
display:inline-table;
margin: 10px;
width: 150px;
}

к #menu добавляешь {
display:inline-table;
}

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

меню тоже можно в ячейку

так же можно сделать с помощью float:left; float:right; и добавить к таблице с контентом свойство clear:both;

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