• when adding the Ambrosite wordpress plugin, how can i make it so that the previous and next entries have the following format:

    thumbnail for previous post, then previous post link, then next post link, then thumbnail for next post

    The default setting results in the format of: thumbnail for previous post, then previous post link, then next post thumbnail, then next post link

    I know I can do this with DIV but what exactly is the code I need to use in the single.php file and in the CSS ?

    Thank you

    http://wordpress.org/extend/plugins/ambrosite-nextprevious-post-link-plus/

Viewing 1 replies (of 1 total)
  • Plugin Author ambrosite

    (@ambrosite)

    If you enclose the next and previous links in separate divs, you can float the post thumbnails left or right within the divs. That will determine on which side of the image the post link appears. For example, if you were to do this with the TwentyTen theme, the CSS would look like this:

    div.nav-previous .post-thumbnail { float: left; }
    div.nav-next .post-thumbnail { float: right; }

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Ambrosite Next/Previous Post Link Plus] button order’ is closed to new replies.