Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • jf2k3 Friend
    #172124

    How can I get the pagination to be horizontal instead of vertical? I’ve tried the suggestions I can find on this forum.

    You can see the problem on this page http://www.gamesnose.com/games

    gray Friend
    #431134

    This is due to the changed div class

    <div class="k2Pagination">

    but it’s by default

    <div class="pagination clearfix">

    So, either add class “pagination” to the div:

    <div class="k2Pagination pagination">

    or add this new CSS tags to the template.css:

    .k2Pagination ul li {
    display: block;
    float: left;
    }

    jf2k3 Friend
    #431137

    Thats made it horizontal. How do I get it centered? Also “page 1 of 9” text seems bo be higher then pagination as well.

    gray Friend
    #431139

    to align, add to .pagination declaration from template.css:

    .pagination {
    ....
    line-height: 25px;
    }

    As regards centering, it’s not an easy task… Try setting in .pagination ul, .pagination p.counter {}

    margin-left: 20%;
    margin-right: auto;

    and in .pagination{}

    text-align: center;

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  gray 12 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum