Jump to content
  • 0

позиционировать пейджинг по середине


vrazbros
 Share

Question

сабж, проблема в том что на данный момент я отцентровал пейджинг используя padding-left:120px, но размеры области в которой он находится изменяется и в результате пейдж смешается от центра. Нужно отцентровать a.next, a.prev, но они должны нах на одной строчке.

Пробовал применять text-align: center не помагло. Код:

.nv-pager {
clear:both;
padding-left:120px;
height:35px;
margin-top:10px;
}

.nv-pager a.next {
background:transparent url("images/gotonext.gif") no-repeat right center;
border:0pt none;
cursor:pointer;
float:left;
margin-left:10px;
display:block;
height:25px;
width:26px;
}

.nv-pager a.prev {
background:transparent url("images/gotoprev.gif") no-repeat left center;
border:0pt none;
cursor:pointer;
display:block;
float:left;
height:25px;
width:26px;
}

<div class="paging">
<div class="nv-pager">
<a id="lnkPrev" style="display:none; border:none;" class="prev" href="#"></a>
<a id="lnkNext" style="display:none; border:none;" class="next" href="#"></a>
</div>
</div>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

вот такое можно применить

.paging{
text-align: center; <!--необходимо для ИЕ 5, ИЕ5.5, остальные браузеры тоже понимают на ура -->
}
.nv-pager {
clear:both;
height:35px;
margin: 10px auto 0 auto; <!--понимает большинство, ИЕ 5, ИЕ5.5 - нет -->
width:62px; <!-- ширина двух ссылок + расстояние между ними -->
}

при использовании

.paging{
text-align: center;
}

можно отказаться от margin: 10px auto 0 auto; и записать его как было margin-top:10px;

Пс.: зачем в примере для ссылок приведен style="display:none; border:none;" ?

Link to comment
Share on other sites

  • 0

style="display:none; border:none;" убрал дейст это ни к чему поставил

.paging {
text-align:center;
}

.nv-pager {
/*clear:both;
padding-left:120px;
height:35px;
margin-top:10px;*/
text-align:center;
}

пейджинг улетел в лево, была идея что это из-за float у next и prev, тоже никакого результата.

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