footer

Support Area Forums Selfie footer

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: www.milimetrica.cl
  • Author
    Posts
  • #29700
    pablo talhouk
    Participant

    Hi Bill,

    I would like to ask you how can y modify the footer on selfie theme.

    It´s possibly to center de text? is possibly to decrease the text size?

    is posible to put an e-mail link in the footer?

    Thank´s in advance!

    Saludos,

    Pablo Talhouk M.

    #29710
    Bill Robbins
    Moderator

    Hey Pablo,

    You can edit the footer. Adding in a email address will take a bit of editing. Here’s what to do:

    1. Go to the Appearance section in your WordPress dashboard and choose Edit.
    2. From the list of files on your right, choose footer.php
    3. Find this line:
      
      <p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p> 
      
    4. Replace that with this:
      
      <p>Your Text <a href="mailto:email@domain.com">Email Link</a></p> 
      

      The Your Text there will be text that doesn’t link to an email address. The email@domain.com is the email address you’d like to link to. The Email Link is the text that would appear on the front end of your site that will be the email link. Change those to fit your needs.

    5. Save your changes.

    Here is how to center the text, change the font size and colors:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      #footer {
      	right: 10px;
      	text-align: center;
      	font-size: 20px;
      }
      
      #footer p {
      	color: #333;
      }
      
      #footer a {
      	color: #333;
      }
      
    3. Update your settings.

    The top style there will actually center the text. The font-size: 20px sets the size of the text in the footer. The #footer a color is the color of any links you add. The #footer p is the color of any text that’s not a link.

    Hope that helps out,
    Bill

    #29718
    pablo talhouk
    Participant

    Thank´s!!!

    it work like charm….

    Best regards, Pablo.

    #29723
    Bill Robbins
    Moderator

    Fantastic…take care Pablo.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘footer’ is closed to new replies.