- This topic has 1 reply, 2 voices, and was last updated 12 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › estore changing picture border color
Tagged: background color, estore, fancy1, image border
Hi,
I tried using wp_eStore_fancy1, and it displays the background image color or border color as white. I tried changing it in many places to no avail. I am new to wordpress. Could you please guide me on how to change the color. please refer to the link to see what i mean. Thanks
http://paradisesweets.com.au/?page_id=125
Regards,
Mathan
You have the following code in your custom style sheet of eStore (wp_eStore_custom_style.css):
.eStore-thumbnail img, .eStore-thumbnail a img {
margin: 4px 0 4px 5px;
padding: 4px;
max-width: none !important;
}
Change it to the following which will change the background color from white to black:
.eStore-thumbnail img, .eStore-thumbnail a img {
margin: 4px 0 4px 5px;
padding: 4px;
max-width: none !important;
background-color: black;
}
I also noticed that you have another lightbox plugin active which is also putting lightbox effect on those images. You can turn off the lightbox option eStore settings and only use the lightbox of that other plugin.