Jump to content
  • 0

Помогите доработать подвал


Kramag
 Share

Question

Необходимо что бы копирайты были по левую сторону а счётчики по правую.

Вот вырезки кода:

footer.php


</div>
<div id="footer">
<div id="copy">
<p>Компания «<a href="http://мойсайт.ru">СтроимВместе</a>» - строительство и ремонт.</p>
<p>Все права защищены. 2011 </p>
</div>

</div>

</body>
</html>

CSS :


/* Footer
—————————————————————————--*/
#footer {
height: 100px;
border-top: 1px #e5e5e4 dashed;
margin-top: 20px;
text-align: right;
}
#fmenu {
width: 90%;
height: 25x;
margin-top: 10px;

}
#fmenu ul {
display: inline-block;

}
#fmenu li {
list-style: none;
padding: 0 5px;
float: left;
}

/* WP
—————————————————————————--*/

буду вам очень благодарен за помощь.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

CSS правильный, просто изначально там предполагалось меню но я его убрал из футера.

Ну предположим что вот такой код счётчиков будет:


<!-- begin of Top100 code -->

<script id="top100Counter" type="text/javascript" src="http://counter.rambler.ru/top100.jcn?666666"></script>
<noscript>
<a href="http://top100.rambler.ru/navi/666666/">
<img src="http://counter.rambler.ru/top100.cnt?2416991" alt="Rambler's Top100" border="0" />
</a>

</noscript>
<!-- end of Top100 code -->

<!--LiveInternet counter--><script type="text/javascript"><!--
document.write("<a href='http://www.liveinternet.ru/click' "+
"target=_blank><img src='//counter.yadro.ru/hit?t45.1;r"+
escape(document.referrer)+((typeof(screen)=="undefined")?"":
";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?
screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+
";"+Math.random()+
"' alt='' title='LiveInternet' "+
"border='0' width='31' height='31'><\/a>")
//--></script><!--/LiveInternet-->

Edited by Kramag
Link to comment
Share on other sites

  • 0

Здорова :rolleyes:

Ну вообще есть много способов решить данную проблему, причем они очень и очень простые...

Вариант 1


<style type="text/css">
.r {float: right;}
.copy {overflow: hidden;} /* http://htmlbook.ru/css/overflow */
.copy p {float: left;}
</style>

<div id=footer>
<div id=copy>
<p>Компания «<a href="http://мойсайт.ru">СтроимВместе</a>» - строительство и ремонт.</p>
<p>Все права защищены. 2011</p>
<div class=r><!-- Счетчики --></div>
</div>
</div><!-- /#footer -->

Данный вариант:

Все что находится в теге P будет с лева (так же можешь поставить margin)..

div.r будет с права, там будет коды счетчиков..

Вариант 2


<style type="text/css">
.l {float: left;}
.r {float: right;}
.copy {overflow: hidden;}
</style>

<div id=footer>
<div id=copy>
<p class=l>Компания «<a href="http://мойсайт.ru">СтроимВместе</a>» - строительство и ремонт.</p>
<p class=l>Все права защищены. 2011</p>
<div class=r><!-- Счетчики --></div>
</div>
</div><!-- /#footer -->

Если необходимо что бы "Все права защищены. 2011" была ниже на строчку то в

<p class=l>Все права защищены. 2011</p>

Добавь "clear: both;".

т.е


<style type="text/css">
.l {float: left;}
.r {float: right;}
.clear {clear: both;}
.copy {overflow: hidden;}
</style>

<p class="l clear">Все права защищены. 2011</p>

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