Add border around photos

Discussion in 'ColorWay WordPress Theme' started by midtownmft, May 2, 2013.

  1. midtownmft

    midtownmft New Member

    Joined:
    Mar 2, 2013
    Messages:
    23
    Likes Received:
    0
    I would like to add a border around photos that I upload to pages. A border that is about 2 px off the photo, preferrable rounded edges. Can you help me with this code? Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .content-wrapper p a img {
    border: 1px black solid;
    border-radius: 10px;
    padding: 4px;
    }
    .content-wrap .sl p a img {
    border: 1px black solid;
    border-radius: 10px;
    padding: 4px;
    }
    .contact p a img {
    border: 1px black solid;
    border-radius: 10px;
    padding: 4px;
    }
    This will solve your issue.
     

Share This Page