Hi All,
Can anyone point me in the right direction to remove the image borders on my Bueno theme?
I think this has been answered on Woothemes forum but I do not have access.
Thanks
dvent
Hi All,
Can anyone point me in the right direction to remove the image borders on my Bueno theme?
I think this has been answered on Woothemes forum but I do not have access.
Thanks
dvent
without a link to your site, from which the css styles would be accessible, direct help is not possible.
general:
in style.css (or any other css files of your theme) look for
img { border: ....; }
which could be in different combinations with other styles.
here is the site:
edit purple.css
(you find this under http://www.thewebgents.co.uk/wp-content/themes/bueno/styles/purple.css if you can't access it from the dashboard)
and look for:
.entry img { border: 5px solid #d7bced; }
either delete this line, or surround it with comment code, like so:
/* .entry img { border: 5px solid #d7bced; } */
edit:
actually, your theme has a custom.css, in which to enter any css changes that you make:
in your case, enter:
.entry img { border: none; }
to remove the image borders
This topic has been closed to new replies.