• Resolved fdelorme

    (@fdelorme)


    Hi!

    Is there a way to reposition the image that I selected for the header? I am illiterate to CSS programming but eager to learn. Could not find anything in the different WP options.

    Thanks!

    Francois

    PS: BTW, wonderful support from the Team Horse gang!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You’ll need to dig into index.php in your theme files and see where the image is positioned in the file. From there, you can move the copy and then use CSS to apply padding, etc. to it.

    Consider making a child theme before your rip apart the theme you have installed.

    http://codex.wordpress.org/Child_Themes

    This will allow you to override things in the theme without touching the original theme.

    Yes, definitely use a child theme for changes. But depending on what you need to change, you may be able to do what you want in the CSS code only. Also, header code is in the header.php file, not index.php, so that’s incorrect.

    If you post a link to your site showing what you want to change, it’s easier for people to give you more specific (better) help.

    Hi Francois,

    Go to Appearance->Theme Options->Design Options->Custom CSS
    And page this following css

    #site-title a {
    text-align: left;
    }
    .hgroup-wrap a {
    text-align: center;
    }
    #site-logo {
    float: none;
    }

    Change the text-align on hgroup-wrap a to left, center and right according to where you need it.

    Regards,
    Team Horse

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Reposition the image in header’ is closed to new replies.