I can't find the correct file to edit in order to ensure removal of image border on te icon for "recommend product to a friend"
I tried editing the values in the CSS file vmsite-ltr.css to be:
.icons{
text-align:left;
border: 0px;
}
But it does not help!!
When looking at the shops product details page source when a product details page is loaded into a brower I can see the following code:
<img alt="Email" src="/media/system/images/emailButton.png"></img>
THAT needs to be:
<img alt="Email" src="/media/system/images/emailButton.png" border="0"></img>
So my question is:
Which exact file of all the many Virtuemart files creates this exact line??
Hope some can help me - thanks ;)
Best regards
Finn
PS: Funny enough the problem only occours in Internet Explorer and not in Firefox or Chrome........... But I am pretty sure that Explorer simply needs to find the border="0" in order to show it how I wnat it to.....
Could you share the link?
Yes :-)
www.mla-design.dk
Finn
I was asking about web page where problem exists.
Also screen shot could help.
For work with IE WebDeveloper Tools, which are built in IE itself, could be helpful also.
There is an example of one of the product details pages here:
http://www.mla-design.dk/index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=35&virtuemart_category_id=33
Also I have attached an image with a red arrow drawn on so you can see where the problem is :-)
Thanks
Finn
[attachment cleanup by admin]
I solved it by inserting this into the CSS in vmsite-ltr.css
.ingen img {
border: 0px;
}
Thanks
Finn