• Stupid question, but how can I adjust the font size of my next/previous links at the bottom of my blog pages? My website is http://zombiekim.com, I’m using Flexx, and this is (I think) the relevant code from my index.php file:
    <!– Previous/Next page navigation –>
    <div class=”paging clearfix”>
    <div class=”alignleft”><?php previous_posts_link(‘« Previous Page’) ?></div>
    <div class=”alignright”><?php next_posts_link(‘Next Page »’) ?></div>

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter zombiekim

    (@zombiekim)

    Or it might be this section, from style.css?

    /*********************************************
    Previous/Next Page Navigation
    *********************************************/
    .paging {
    clear: both; /* To clear any floats */
    margin: 0px; padding: 10px;
    }

    Thread Starter zombiekim

    (@zombiekim)

    Figured it out. I was changing the next/previous in my archives, so I needed to edit my archives.php file.

    <div class=”alignleft”><span><span style=”font-size:22px;”><?php previous_posts_link(‘« Previous Page’) ?></span></div>
    <div class=”alignright”><span><span style=”font-size:22px;”><?php next_posts_link(‘Next Page »’) ?></span></div>
    </div>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change font size in next/previous–Flexx’ is closed to new replies.