When it comes to coding layout, how should the link be styled?
<a href="#" class="class1 class2 class3"><span>Previous</span></a>
<a href="#" class="class1 class2 class3"><span>Next</span>
In my search for a solution, I discovered a potential modification for the shape of these links:
<div class="pag">
<%= will_paginate @data, :page_links => false, :next_label => '' %>
</div>
<div class="pag">
<%= will_paginate @data, :page_links => false, :previous_label => '' %>
</div>
My inquiry is: How can I update the second example to resemble the structure of the first example? The issue lies with those two span
elements...
Appreciate any help. Thanks!