Hi,
Is it possible to add frames around images in colour section. I usually use a plugin for this: https://wordpress.org/plugins/wp-image-borders/
The images dont look great and would look better with a frame around them.
Thanks
Hey robertscott!
Sure, you can turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your images a custom class and then add following code to Quick CSS in Enfold theme options under General Styling tab
.your-custom-class { border: 5px solid white; }
If that does not help, please post the link to your website and a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Regards,
Yigit
Awesome Yigit lets try that. Thanks
Hey!
Please do so and let us know so we can mark the thread as resolved or assist you further.
Cheers!
Yigit
What would the code be to use different color instead of solid white?
.your-custom-class { border: 5px #color; } ??
Hey!
It should be as following if you would like to use HEX value of the color
.your-custom-class { border: 5px solid #e2e2e2; }
Best regards,
Yigit
Hi Yigit,
That does’nt seem to work:
Hey!
It does on my end – [please see screenshot in private content field below]
Please flush browser cache and refresh your page a few times
Regards,
Yigit
Hi Yigit,
Yep the white one is fine but the top pink border isnt working
Hi!
Please change the code to following one
.pink-img-border img {
border: 3px solid #f7a69d;
}
Best regards,
Yigit
Perfect