• Resolved admin@CandS

    (@admincands)


    Hi! I’ve been looking for a way to properly position or alogn my company logo in the Organic 1.9.4 Theme header. As you can see un https://www.consultingandstrategy.net the company logo is w bit too much to the bottom and I need to position it a little more up. Where do I change margin to make this happen? I’ve changed it in the style sheet with no success. I used FireFox Firebug and I was able to see that I need to add:
    {element.style
    margin-top: -20px;
    }

    It works in Firebug, who do I do that in WordPress?
    HUGE THANKS!
    Chris

Viewing 1 replies (of 1 total)
  • Thread Starter admin@CandS

    (@admincands)

    SOLUTION /ANSWER
    To: Repositioning or aligning a logo that is not 40×40 in the Organic Theme 1.9.4

    Go to Header.php in your Editor sectioN. lOOK FOR:
    ___________________________
    <div id=”header”>
    <div id=”head-top”>
    <h1 id=”logo”><img src=”<?php echo bloginfo(‘template_directory’); ?>/img/logos/<?php echo get_option(‘organic_theme_logo’); ?>.gif” class=”small-logo” alt=”logo” width=”70″ height=”80″ />/”><?php bloginfo(‘name’); ?></h1>
    ___________________________

    Now Insert: style=”margin-top: -20px”
    in the above section. See example below
    ___________________________

    <div id=”header”>
    <div id=”head-top”>
    <h1 id=”logo”><img src=”<?php echo bloginfo(‘template_directory’); ?>/img/logos/<?php echo get_option(‘organic_theme_logo’); ?>.gif” class=”small-logo” alt=”logo” width=”70″ height=”80″ style=”margin-top: -20px” />/”><?php bloginfo(‘name’); ?></h1>

    ___________________________

    Notice I had previously changed the space or the logo to be more than just 40×40 it now nows as width=”70″ height=”80″

    =)
    CB

Viewing 1 replies (of 1 total)
  • The topic ‘Organic 1.9.4 Theme Logo Position’ is closed to new replies.