• Hi, I have inherited one wordpress website from one developer, unfortunately, the social media icons shape at the footer is not circle at all.

    What specific css class and style should i change?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Something along these lines should help:

    a.wp-block-social-link-anchor?{
    width: 2em;
    height: 2em;
    text-align: center;
    }
    elfrieda

    (@elfrieda)

    you’ll need to adjust their CSS styles.

    .social-icon-class {
    width: 40px; /* Adjust size as needed / height: 40px; / Ensure width and height are equal for a circle / border-radius: 50%; / Makes the icon circular */
    display: flex;
    align-items: center;
    justify-content: center;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.