• hey, was wondering if it’s possible to style wp_pagiante in the stylesheet.

    I want the nav in my header, so I insert this code:

    <?php if(function_exists('wp_paginate')) {
        wp_paginate();
    } ?>

    wp_paginate appears fine and works. Now I want to move it by using margin in the style sheet.

    I changed the code to this:

    <?php if ( function_exists('wp_paginate') ) {
    	wp_paginate('<p id="stylepaginate">','</p>');
    } ?>

    then put this in the stylesheet

    #stylepaginate {
    margin:-70px 0 44px;
    }

    It doesn’t do anything though! Am I missing something?

    Thank you!

    Keke

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Eric

    (@emartin24)

    The easiest way to do that would be to just add that markup in the Advanced Settings.

    Before Markup: <p id=”stylepaginate”>
    After Markup: </p>

    -Eric

    Thread Starter kekearif

    (@kekearif)

    cool that worked, thx mate!

    Keke

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP-Paginate] wp-paginate in style sheet’ is closed to new replies.