Okay
  Public Ticket #2038887
Centered logo issue after update
Closed

Comments

  •  4
    Marcin started the conversation

    Hi!

    Could you please check what is wrong with logo after update to 10.5. Logo is not in center anymore.

  •   Marcin replied privately
  •  1,089
    ThemeNectar replied

    Hey Marcin,

    there's a javascript error occurring from a custom script that's being loaded when on the theme options page. Please check the attached screenshots in regards. 

    Are you adding that or is it coming from a plugin? Once it's removed or recoded correctly, the theme options should appear and I can then take a closer look into the logo issue for you.

    Cheers

  •  4
    Marcin replied

    Hi,

    It was a popup plugin, when deactivated theme panel works. Logo still moved.

    Thanks!

  •  1,089
    ThemeNectar replied

    Hey, the centered logo issue is occurring due to the following custom CSS which you have in your Salient options panel > general settings > css/script related tab:

    header#top #logo img {
        position: absolute;
        top: 10px;
        z-index: 99!important;
    }
    

    Once you remove that, it should display correctly :)

  •  4
    Marcin replied

    Thanks!

    That works. To move logo down a bit I use:

    header#top #logo img {
         margin-top: 10px;
    }

    Should not be a problem with this?

  •  1,089
    ThemeNectar replied

    That shouldn't cause any issuessmile.png

  •  4
    Marcin replied

    Thank you very much!