Support » Themes and Templates » Simon Footer Font Color

  • I’m using the Simon WP Framework theme and would like to change the font color used in the footer to make it darker… how do I do that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Post a link to your site for starters.

    Use FireFox and add the firebug extension and learn how to use it.

    Thread Starter konveyance

    (@konveyance)

    my site isn’t actually posted online yet… I’m new to the World of WordPress but can nose my way around a bit in the PHP… I found the footer.php file, but don’t see where it is specifying to make the whole footer block that color, nor where it’s deciding the font colors… I searched what I could in the CSS files to no avail… I do wish the files weren’t all mashed together like a human would never read them.

    give a class to to those footer paragraph/text etc. in the footer.php
    and put inline css code at the start.

    like below e.g.

    <?php
    
    <style type="text/css">
    <!--
    
    p .color {font-family:arial; color:#ccc;}
    
    -->
    </style>
    
    /footer template/
    
    <p class="color">Your Paragaraph or text for which you wnat to change the color</p>
    
    ?>

    This is just an example. If u can provide footer.php. I will try to solve this

    Thread Starter konveyance

    (@konveyance)

    Thanks nitin044 — I’ll try that.

    and I’ll post the footer.php file, but first I have a meeting to attend, so that won’t be for another 2-3 hours.

    Thanks again…
    🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Simon Footer Font Color’ is closed to new replies.