LOGO is not hyperlink to HOME Page

Homepage Community Forums Epik Theme Support LOGO is not hyperlink to HOME Page

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #10493
    #10496
    scooby
    Customer

      It would probably be easier to just use the Header Uploader when uploading a logo to a Genesis theme. All you have to do is find out the exact size of your image, and then change the size in your functions.php file to match that exact size. The code in your functions file looks like this –

      // Add support for custom header
      add_theme_support( 'genesis-custom-header', array(
      	'width' => 360,
      	'height' => 164
      ) );
      

      Then upload the logo in the WP header uploader and it should upload without needing to crop it. Once you do that, the hyperlink will show up. You may need to adjust the size of the hyperlink in your css depending on the height of your logo –

      .header-image .site-title a {
      	float: left;
      	min-height: 164px;
      	width: 100%;
      }

      Here is a tutorial on uploading logos – http://ow.ly/tpYME

      #10499
      Nandita
      Customer

        Thanks SCOOBY,

        Your codes worked great!
        Thank you so much for the help…

      Viewing 3 posts - 1 through 3 (of 3 total)
      • The topic ‘LOGO is not hyperlink to HOME Page’ is closed to new replies.