• Resolved Carolyn_Madison

    (@carolyn_madison)


    I am building currently building a custom wordpress theme for: http://wthestudio.com/blog/

    I would really like to style the links “Newer Entries” and “Older Entries,” or at the very least make the “Newer Entries” float right…but I have no idea how!

    Can anyone help?

    Thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Michael

    (@alchymyth)

    that is the html code of the next/prev links:

    <div class="navigation">
    	<div class="next-posts"><a href="http://wthestudio.com/blog/page/2/" >&laquo; Older Entries</a></div>
    	<div class="prev-posts"></div>
    </div>

    this gives you enough css classes to style the next/prev;

    for instance:

    .navigation .next-posts { float:left; }
    .navigation .prev-posts { float:right; }

    Thread Starter Carolyn_Madison

    (@carolyn_madison)

    Thank you so much! Awesome!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Want to style "newer entries" "older entries" links’ is closed to new replies.