• Hello,

    I’d like to set the site logo to something that isn’t a circle. I’m wondering if this is possible by disabling something somewhere. My site is at kschenk.com in case it’s necessary.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Raam Dev

    (@raamdev)

    That effect is applied via CSS. You should be able to disable that effect by adding the following CSS to a Child Theme (or via the Jetpack Edit CSS module; if you’re running Jetpack, you can enable that module and visit Dashboard → Appearance → Edit CSS and add the following):

    .site-logo img {
         border-radius: 0%;
         -webkit-border-radius: 0%;
         -moz-border-radius: 0%;
         border-radius: 0%;
    }
    Thread Starter KevinSchenk

    (@kevinschenk)

    Thanks a ton for the reply, it worked! I was looking at the container a element (.site-logo), and missed looking at the img in the inspector. Thanks for the great theme!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Non-circular site logo?’ is closed to new replies.