• My WP main page is michaelgaither.com/home. I need help with a few things on the header/banner:

    1) How do I force the text to be Arial bold, so it matches the existing static HTML page that are already on the rest of my site?

    2) How can I add my RSS feed into to the bottom of the banner? I assume I do this in the header.php file.

    3) Is it possible to pad the text, so it’s moved to the right a little? Currently it’s left justified against the photo.

    Many thanks,

    – Michael

Viewing 2 replies - 1 through 2 (of 2 total)
  • 1. Try editing your theme’s stylesheet and changing all reference to font-family to read:

    font-family:Arial,Helvetica,sans-serif;
    font-weight:bold;

    2. Try adding:
    <p><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></p>

    to your theme’s header.php file. Alternatively, simply add add_theme_support( 'automatic-feed-links' ); to your theme’s functions.php file (after the opening <?php tag) to add your feed links to the browser address bar.

    3. Which text? I can’t see any text hard up against an image using Firefox.

    Thread Starter mhgaither

    (@mhgaither)

    Thanks, esmi. Actually, I mis-wrote. I really only want to change the main header text to be Arial bold. Also want to change the font color (again, just for the header text.)

    Can you provide some more guidance? Many thanks.

    – Michael

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header formatting: Forcing font and adding RSS tag’ is closed to new replies.