Logo placement

Support Area Forums Selfie Logo placement

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://www.thorntailcarpentry.com
  • Author
    Posts
  • #24226
    erik larsen
    Participant

    Hi there,
    I’m relatively new to wordpress and was wondering if there is a simple way to change the logo placement on Selfie.

    Great theme!
    Cheers,
    Erik.

    #24236
    Bill Robbins
    Moderator

    Hello Erik,

    Thank you for your business first of all. Great question too. You can change the position of the logo. Here’s how:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      #logo,
      #text-logo {
      	top: 10px;
      	left: 10px;
      }
      

      The logo is set to be 10 pixels from the top and from the left. You can change that position by making adjusting those numbers in the snippet above. To make it sit further down, you would make the top: 10px; into a larger number like 50px. To go further from the left edge, you’d do the same to the left: 10px; that’s there.

    3. When you’re logged into your site, WordPress adds an admin bar at the top. Because of that the theme will move the logo down a bit further so it’s not covered up. If you’d like to change it for yourself while you’re logged in, you can add this to the Custom CSS too:
      
      
      .admin-bar #logo,
      .admin-bar #text-logo {
      	top: 50px;
      }
      
    4. Update your settings.

    If you have any questions or trouble, let me know.

    Thanks again and have a great week,
    Bill

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