Home Forums Basel support forum CSS code to add a circular black border to social icons

CSS code to add a circular black border to social icons

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #50805

    raulo460
    Participant

    I attach screenshot. how would the css be? thanks

    Attachments:
    You must be logged in to view attached files.
    #50816

    Hello,

    Try to add this CSS:

    .social-icons li a {
        display: inline-block;
        padding: 7px;
        border: 1px solid;
        border-radius: 25px;
    }

    Best Regards

    #50818

    raulo460
    Participant

    Thanks, it works except facebook icon 🙁
    See attached image.

    Attachments:
    You must be logged in to view attached files.
    #50832

    Hello,

    Try this CSS code:

    .social-icons li:first-child > a {
        display: inline-block;
        padding: 7px 9px;
        border: 1px solid;
        border-radius: 25px;
    }

    Best Regards

    #50879

    raulo460
    Participant

    It works, thanks.

    #50885

    You are always welcome!

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘CSS code to add a circular black border to social icons’ is closed to new replies.