Okay
  Public Ticket #2034733
Social Icons not centered
Closed

Comments

  • LiskaD started the conversation

    Can anyone tell me why my social icons are aligning to the top of my footer instead of centered? How can I fix this?

  •  1,089
    ThemeNectar replied

    Hey LiskaD, 

    that's occurring due to the following css which you have in your child theme:


    p {
        padding-bottom: 14px!important;
    }
    If you do not want to remove the instances of that, you can add this in as well to fix it:
    #footer-outer p {
        padding-bottom: 0!important;
    }
    Cheers