Logo Size

Discussion in 'Andrina WordPress Theme' started by mhoupt, Sep 4, 2014.

  1. mhoupt

    mhoupt New Member

    Joined:
    Dec 28, 2011
    Messages:
    10
    Likes Received:
    0
    How can I make my Logo larger when presented. Right now it is rather small, but I am uploading a file that has dimensions of 1000PX in length.
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello.

    To upload larger logo edit in header.php file as shown below in screenshot.

    5sep3.png


    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. mhoupt

    mhoupt New Member

    Joined:
    Dec 28, 2011
    Messages:
    10
    Likes Received:
    0
    Thank you. I will try this.

    Mark
     
  4. mhoupt

    mhoupt New Member

    Joined:
    Dec 28, 2011
    Messages:
    10
    Likes Received:
    0
    That does not seem to have changed the size of my logo. Here is my link http://3rdwire.net/3rdWireSecurity/

    <div class="header">
    <div class="grid_24 alpha">
    <div class="logo"> <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a></div>

    <div class="call-us">
    <?php if (inkthemes_get_option('andrina_contact_number') != '') { ?>
    <a class="btn" href="tel:<?php echo stripslashes(inkthemes_get_option('andrina_contact_number')); ?>">
    </a>
    <?php } else {
    ?>
    <?php } ?>
    </div>
    </div>
    <div class="grid_24 omega">
     
  5. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    You can manage width and height of logo image by following CSS.
    Code:
    .header .logo img {
    width: 240px;
    height: auto;
    }
    By default above code in used in style.css file if you want to change width and height of logo image then set height and width of logo images in above CSS code according to your requirement, and paste CSS code in Custom CSS.

    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page