How to make the logo larger on promenade

  • Unknown's avatar

    Hi there, I am trying to make my logo a little larger using the theme Promenade, it seems to be getting lost in the site being the size it is. I realize that this is probably a CSS code that I need to slip in there but I’m clueless when it comes to this stuff. Can anyone throw me a hand?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Try this out, you can set the height (and width if needed), just upload a new image to your media library and copy the URL in, I’ve used one of your post images as an example:

    .site-logo {
      display:none;
    }
    
    #masthead a.site-logo-anchor {
      display:block;
      height: 320px;
      background: url("http://rpmorrisonbuilders.files.wordpress.com/2013/01/10417019_393396977465265_1689581297522989045_n.jpg") #fff no-repeat top center;
    }
  • Unknown's avatar

    @rpmorrisonbuilders, I took a peek at your media library and found a larger version of your site logo and used that URL in the following. Paste in this CSS and see what you think.

    .site-logo {
      display:none;
    }
    
    #masthead a.site-logo-anchor {
      display:block;
      height: 220px;
      background: url("http://rpmorrisonbuilders.files.wordpress.com/2014/08/cropped-cropped-logo1.png") #fff no-repeat top center;
    }
  • The topic ‘How to make the logo larger on promenade’ is closed to new replies.