• I recreated my site logo but it appears very tiny. I want to increase the size. I am having trouble finding in CSS where to adjust the size to make it legible.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Roch

    (@rochesterj)

    Hi!

    Thanks for reaching out.

    Add the following code in your custom css field ( Wp admin > SportsPress > Settings > General > Custom CSS ) and let us know how it works:

    body .site-logo img {
    	max-width: 500px;
    	max-height: 500px;
    }

    Kind Regards

    Thread Starter jwright1099

    (@jwright1099)

    that worked great…500px was a bit large but I adjusted it to my liking…now how would I adjust the header text to be centered vertically beside the larger logo?

    Thread Starter jwright1099

    (@jwright1099)

    actually I have decided i want to remove the site title and just center the logo within the banner. I have tried several things with no luck. any help?

    Roch

    (@rochesterj)

    Hi there!

    Sure, to center the logo, you can use this CSS:

    .site-identity {
    	text-align: center;
    }
    body .site-logo {
    	float: none;
    	display: inline-block;
    }

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change site-logo size’ is closed to new replies.