Hi there,
Does anyone know how add to my view based on views bootstrap grid next/back arrows like in attached image? For more information see the red square on image: http://shot.qip.ru/00QjW9-6soytzA1U/
It can be realized through CSS position, but in my mind it is not perfect solution.
Thanks for all answers!
BR, Anatolii.

Comments

ItangSanjana’s picture

Theme your views display output and modify it (for example) as follow:

 ...
 <?php if ($rows): ?>
    <div class="view-content">
      <?php if ($pager): ?><?php print $pager; ?><?php endif; ?>
      <?php print $rows; ?>
      <?php if ($pager): ?><?php print $pager; ?><?php endif; ?>
    </div>
  <?php elseif ($empty): ?>
    <div class="view-empty">
      <?php print $empty; ?>
    </div>
  <?php endif; ?>
  ...

Then create some CSS rules for the rest.
Check this out for more info: https://www.drupal.org/node/352970

CMIIW