Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #17527

    sarah t
    Participant

    Hi I am trying to figure out how to make rounded corners for my text boxes and pictures. I saw that you previously responded to someone about this but I didnt really understand what you meant because I am a total novice. Could you help me out here please?

    Thanks!

    #17568

    Kory
    Keymaster

    Hey Sarah,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL as stated on the forum entrance page as well as point out what parts of your site you’re wanting to round the corners on. This is to ensure that we can provide you with a tailored answer to your situation. Once you have have provided us with your URL, we will be happy to assist you with everything.

    #17704

    sarah t
    Participant

    Hi, sorry about that, I thought I had done!

    Its drsarahtonks.co.uk and I want to round the edges of all the pictures I have included in the site.

    Thank you!

    #17722

    Christian
    Moderator

    Hey Sarah,

    In the Customizer > Custom > CSS, please add the code below.

    img {
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
    }
    

    You can change 10px as per your needs. You can test the border at http://border-radius.com/

    Hope that helps. 🙂

    #17733

    sarah t
    Participant

    AMAZING! Thank you so much!

    #17779

    Christian
    Moderator

    You’re welcome Sarah. Glad I could help.