Reply To: center widget on Home page

Homepage Community Forums Epik Theme Support center widget on Home page Reply To: center widget on Home page

#4227
Wes
Moderator

    It can be done, but you’ll have to make some hacks to get it working.

    Add this to your style.css file –

    `.social-circles ul li {
    display: inline-block !important;
    float: none !important;
    margin: 0 10px 10px !important;
    }`

    That should override the plugins css for the list elements…..referring to “li” in the html code source.

    Then add this –

    `.social-circles .alignleft,
    .social-circles .alignright {
    float: none !important;
    text-align: center !important;
    }`

    This overrides the alignleft and alignright and allows us to center it.