VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: finngu on July 21, 2013, 07:44:57 AM

Title: Recommend product to friend - email icon border
Post by: finngu on July 21, 2013, 07:44:57 AM
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.....
Title: Re: Recommend product to friend - email icon border
Post by: Maxim Pishnyak on July 21, 2013, 22:30:53 PM
Could you share the link?
Title: Re: Recommend product to friend - email icon border
Post by: finngu on July 22, 2013, 16:18:23 PM
Yes :-)

www.mla-design.dk



Finn
Title: Re: Recommend product to friend - email icon border
Post by: Maxim Pishnyak on July 23, 2013, 16:37:20 PM
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.
Title: Re: Recommend product to friend - email icon border
Post by: finngu on July 29, 2013, 18:37:30 PM
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]
Title: Re: Recommend product to friend - email icon border
Post by: finngu on July 29, 2013, 19:19:10 PM
I solved it by inserting this into the CSS in vmsite-ltr.css


.ingen img {
   border: 0px;
}


Thanks
Finn