Quick question on adding a subtitle/slogan

Discussion in 'HTML & Website Design' started by wholesalechecklist, Jan 22, 2010.

  1. #1
    http://slsblog.com/

    I want to add a slogan under SLSBlog.com in small italicized white font. I can handle the white font and the size of the font and style, but I am unsure as the best way to go about this in general. Help would be appreciated.
     
    wholesalechecklist, Jan 22, 2010 IP
  2. jwitt98

    jwitt98 Peon

    Messages:
    145
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Since your using wordpress you will probably want to modify the header.php in your template folder.
     
    jwitt98, Jan 22, 2010 IP
  3. wholesalechecklist

    wholesalechecklist Peon

    Messages:
    511
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Just a simple br and then h2 with some css? or is there a better way?
     
    wholesalechecklist, Jan 22, 2010 IP
  4. jwitt98

    jwitt98 Peon

    Messages:
    145
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #4
    That would work fine as long as you want the text to appear on every page, assuming every page calls header.php, which is probably the case depending on how the template is made.

    If you only want the text to appear on certain pages and not others, then a php conditional statement would need to be used.
     
    jwitt98, Jan 22, 2010 IP
  5. Fez

    Fez Member

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    43
    #5
    Well usually people use their blog description as the tagline or slogan that appears below their main blog title/logo.

    To define a tagline go into general settings inside Wordpress admin panel.

    To get the tagline to show anywhere in the blog you will need to open the theme editor under Appearances tab inside Wordpress admin and select the header template and insert this line of code wherever you want the tagline to show:

    <?php bloginfo('description'); ?>
    PHP:
     
    Fez, Jan 23, 2010 IP