Forum Replies Created

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)