What CSS can I use to add a black frame around images?
Hey dpilling!
Please add following code to Quick CSS in Enfold theme options under Styling tab
img { border: 2px solid black; }
Cheers!
Yigit
Thanks! I ended up using:
img { border-style: solid;
border-width: 3px;
border-color: #666666 !important;
}
Looks great.