• Resolved misteroc

    (@misteroc)


    Hi there,
    In my site, I’ve chosen the left-aligned logo.
    How do I adjust the width of the logo container? I think it’s fixed at 300px, causing my logo to resize (it’s originally 500px wide). You can see it here: https://www.cnnenglishcourse.com that logo that says “Center of Nationwide Native Speakers”. I’m not using much of the primary menu as you can see, and I’m keeping that link on the right side, so using the centered logo is not an option.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to change the header.php file on line 48.

    Should say this:
    <?php global $smof_data; if(isset($smof_data['logo_layout']) && ($smof_data['logo_layout'] == 'logocenter')) {$logocclass = 'span12'; $menulclass = 'span12';} else {$logocclass = 'span4'; $menulclass = 'span8';} ?>

    Change to this:
    <?php global $smof_data; if(isset($smof_data['logo_layout']) && ($smof_data['logo_layout'] == 'logocenter')) {$logocclass = 'span12'; $menulclass = 'span12';} else {$logocclass = 'span6'; $menulclass = 'span6';} ?>

    Hope that helps,
    Kadence Themes

    Thread Starter misteroc

    (@misteroc)

    Works perfectly! Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Logo width in left-side logo layout’ is closed to new replies.