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
Hey travwaite,
Try adjusting the css to this:
#gold-border {
border: 1px solid #b1935f!important;
border-radius: 0px;
padding: 5px;
}
Best regards,
Jordan Shannon