• I want to change the font color of the navigation text at the bottom of my blog. the word “Next Page” and “Previous Page” is too dark. The code is below. what do i need to add to change that font color?

    <?php endif; ?>
    <div id=”nav” font color=”#F0F0F0″>
    <?php posts_nav_link(‘    ‘, __(‘« Previous page ‘), __(‘ Next page »’)); ?>
    </div>

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

    (@raa2001)

    Actually I added the <font color=> which didnt work

    This is the code before I tried editing it

    <?php endif; ?>
    <div id=”nav”>
    <?php posts_nav_link(‘    ‘, __(‘« Previous page ‘), __(‘ Next page »’)); ?>
    </div>

    edit the style.css file to something like:

    #nav {
    color: #F0F0F0;
    }

    Refer to W3schools css tutorials if you have further questions ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘PHP coding help’ is closed to new replies.