Social Media Icons

Homepage Community Forums Epik Theme Support Social Media Icons

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #12858
    Justin
    Customer

      Hey Wes,

      I’ve got some social media icons in my footer 3 of my site and I really want them centered in the widget area (footer 3). I am using a plugin to make the icons and cannot get them centered. I have tried multiple plugins but they all behave similarly. I can get them to float left or float right but not aligned in the center when I use the developer tool for chrome.

      Here is the link to my site: http://www.compmort.biz

      #12862
      Wes
      Moderator

        The float: center; won’t work because that element doesn’t exist in css. As you’ve noticed, only left and right will work for css floats – http://www.w3schools.com/css/css_float.asp

        However, you could tweak your code and override the plugins css by doing adding this to your style.css file –

        .social-icons {
        	float: none !important;
        	display: inline !important;
        }

        When I add the above code it centers all of the icons.

        #12866
        Justin
        Customer

          Thank you so much! I had been basically banging my head on a wall trying to get those to work.

          #12872
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Social Media Icons’ is closed to new replies.