Okay
  Public Ticket #628778
Center Secondary Menu Social Icons
Closed

Comments

  •  2
    Serfyer started the conversation

    I am having trouble figuring out the code to center the social icons in the secondary menu in the header. First I tried this:

    #header-secondary-outer #social {
    
        margin: auto;        
    }

    It didn't have any effect, so I tried targeting the icons with this:

    #header-secondary-outer #social li {
    
        margin: auto;
    }

    Thank you!

  •  9,031
    Tahir replied

    Hey,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    #header-secondary-outer nav {
        display: table;
        margin: auto !important;
    }

    Best



    ThemeNectar Support Team 

  •  2
    Serfyer replied

    Thank you so very much!!