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.
Hello. To upload larger logo edit in header.php file as shown below in screenshot. That will resolve your issue. Thanks & Regards Yogesh Bhade
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">
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