Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1306483

    Hi guys,

    Just trying to add a simple gold border to a set of images. Not sure where I’m going wrong.

    I gave the image a Custom ID Attribute of “gold-border” and then posted the following CSS:

    #gold-border {
    border: 1px #b1935f;
    border-radius: 0px;
    padding: 5px;
    }

    The padding shows up, but the border doesn’t. I’m sure it’s a simple fix, but I can’t figure it out.

    Many thanks

    #1306491

    Hey travwaite,

    Try adjusting the css to this:

    #gold-border {
    border: 1px solid #b1935f!important;
    border-radius: 0px;
    padding: 5px;
    }

    Best regards,
    Jordan Shannon

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘CSS Image Customisations’ is closed to new replies.