• Call Us: 0111 222 333
  • Mail: info@domain.com
Search
  • Register
Login
Corporate DNN Responsive Theme
  • Home
    • AquaBlue
    • Green
    • Chocolate
    • DodgerBlue
    • Grey
    • OliveGreen
    • Orange
    • Purple
    • Red
    • Slategrey
  • Mega Menu
  • Pages
    • Left Side Pages
    • Right Side Pages
    • About Us
    • Meet the Team
    • Pricing Table
    • Services
    • Career
    • FAQ
    • Our Office
    • 404 Page
    • Blank Pages
  • Sliders
    • Responsive Nivo Slider
    • Responsive Flex Slider
    • Responsive Bx Slider
  • Shortcodes
    • Accordion
    • Carousel
    • Testimonials
    • Font Awesome Icons
    • Icon glyphs
    • Images
    • Global settings
    • Progress bars
    • Button groups
    • Buttons
    • Pagination
    • Alerts
    • Typography
    • Code
    • Tables
    • Media object
    • Dividers & Gaps
    • Highlighted Text
    • Teasers
    • Promo Box
    • Video Shortcode
  • Skin Features
    • BoxedVersion
    • Boxed Version Inner Page
    • Header2 - RightMenu
    • Header3 - LeftMenu
    • Header4 - NoTopbar
    • DNN Mega Menu
  • Containers
    • AquaBlue Container
    • Green Container
    • Chocolate Container
    • Dodgerblue Container
    • Grey Container
    • Olivegreen Container
    • Orange Container
    • Purple Container
    • Red Container
    • Slategrey Container
  • Portfolio
  • Contact Us
Go to...MAIN MENU
  • Home
    • AquaBlue
    • Green
    • Chocolate
    • DodgerBlue
    • Grey
    • OliveGreen
    • Orange
    • Purple
    • Red
    • Slategrey
  • Mega Menu
  • Pages
    • Left Side Pages
    • Right Side Pages
    • About Us
    • Meet the Team
    • Pricing Table
    • Services
    • Career
    • FAQ
    • Our Office
    • 404 Page
    • Blank Pages
  • Sliders
    • Responsive Nivo Slider
    • Responsive Flex Slider
    • Responsive Bx Slider
  • Shortcodes
    • Accordion
    • Carousel
    • Testimonials
    • Font Awesome Icons
    • Icon glyphs
    • Images
    • Global settings
    • Progress bars
    • Button groups
    • Buttons
    • Pagination
    • Alerts
    • Typography
    • Code
    • Tables
    • Media object
    • Dividers & Gaps
    • Highlighted Text
    • Teasers
    • Promo Box
    • Video Shortcode
  • Skin Features
    • BoxedVersion
    • Boxed Version Inner Page
    • Header2 - RightMenu
    • Header3 - LeftMenu
    • Header4 - NoTopbar
    • DNN Mega Menu
  • Containers
    • AquaBlue Container
    • Green Container
    • Chocolate Container
    • Dodgerblue Container
    • Grey Container
    • Olivegreen Container
    • Orange Container
    • Purple Container
    • Red Container
    • Slategrey Container
  • Portfolio
  • Contact Us
Pagination
Shortcodes / Pagination

Pagination Two options for paging through content

Standard pagination

Simple pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas.

  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
<div class="pagination">
  <ul>
    <li><a href="#">Prev</a></li>
    <li><a href="#">1</a></li>
    <li><a href="#">2</a></li>
    <li><a href="#">3</a></li>
    <li><a href="#">4</a></li>
    <li><a href="#">5</a></li>
    <li><a href="#">Next</a></li>
  </ul>
</div>

Options

Disabled and active states

Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
<div class="pagination">
  <ul>
    <li class="disabled"><a href="#">&laquo;</a></li>
    <li class="active"><a href="#">1</a></li>
    ...
  </ul>
</div>

You can optionally swap out active or disabled anchors for spans to remove click functionality while retaining intended styles.

<div class="pagination">
  <ul>
    <li class="disabled"><span>&laquo;</span></li>
    <li class="active"><span>1</span></li>
    ...
  </ul>
</div>

Sizes

Fancy larger or smaller pagination? Add .pagination-large, .pagination-small, or .pagination-mini for additional sizes.

  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
<div class="pagination pagination-large">
  <ul>
    ...
  </ul>
</div>
<div class="pagination">
  <ul>
    ...
  </ul>
</div>
<div class="pagination pagination-small">
  <ul>
    ...
  </ul>
</div>
<div class="pagination pagination-mini">
  <ul>
    ...
  </ul>
</div>

Alignment

Add one of two optional classes to change the alignment of pagination links: .pagination-centered and .pagination-right.

  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
<div class="pagination pagination-centered">
  ...
</div>
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
<div class="pagination pagination-right">
  ...
</div>

Pager

Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines.

Default example

By default, the pager centers links.

  • Previous
  • Next
<ul class="pager">
  <li><a href="#">Previous</a></li>
  <li><a href="#">Next</a></li>
</ul>

Aligned links

Alternatively, you can align each link to the sides:

  • ← Older
  • Newer →
<ul class="pager">
  <li class="previous">
    <a href="#">&larr; Older</a>
  </li>
  <li class="next">
    <a href="#">Newer &rarr;</a>
  </li>
</ul>

Optional disabled state

Pager links also use the general .disabled utility class from the pagination.

  • ← Older
  • Newer →
<ul class="pager">
  <li class="previous disabled">
    <a href="#">&larr; Older</a>
  </li>
  ...
</ul>
Copyright 2025 by Corporate : Terms Of Use : Privacy Statement