Forums Forums Search & Filter Pro Pagination placement

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #57923

    Is it possible to load the pagination results

    [code]
    Found <?php echo $query->found_posts; ?> Resources</br>
    Page <?php echo $query->query[‘paged’]; ?> of <?php echo $query->max_num_pages; ?>

    <div class=”pagination” style=”margin: 0px;”>

    <div class=”nav-next”><?php previous_posts_link( ‘Previous’ ); ?></div>
    <div class=”nav-previous”><?php next_posts_link( ‘Next’, $query->max_num_pages ); ?></div>
    [/code]
    Outside of the results. Preferably before Because it’s interfering with the grid layout. Or is it better if I just finesse it with css?

    Here is my sample page.

    http://www.lessonpick.com/test/

    Trevor
    #57925

    Some custom css for you:

    .search-filter-results div.pagination {
      width: 100%;
      display: block;
    }

    or, it might need to be:

    .search-filter-results div.pagination {
      width: 100% !important;
      display: block !important;
    }
Viewing 2 posts - 1 through 2 (of 2 total)