Customizing Social Icons in Footer

Hi there
i would like to customise the social icons in the footer of Integrity X-Theme. How can i change the colors of Icon and hover, so they don’t have the global Link color and how can i make the Icons bigger?

Thanks for your help!

Hi There,

Please try adding this custom CSS under Theme Options > CSS:

.x-colophon.bottom .x-social-global a {
    color: #000;
}
.x-colophon.bottom .x-social-global a:hover {
    color: #c54747;
}

Hope it helps :slight_smile:

Hi thai

Yes, that works, thank you very much. How can i make the icons bigger? Is there any CSS?

Thanks a lot!

Hi Felix,

You can add font-size in that CSS and increase their sizes, example,

.x-colophon.bottom .x-social-global a {
    color: #000;
    font-size: 50px;
}
.x-colophon.bottom .x-social-global a:hover {
    color: #c54747;
}

Cheers!

Hi Rad

Thank you very much! I didn’t know it’s “font-size”. I have tried just “size”. Now it’s working perfect!

Thanks a lot!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.