-
AuthorPosts
-
June 17, 2008 at 3:40 pm #129786
Good morning, please
in attachment there is my problem, the pathway images in virtuemart when i go in category product, distort. Why ? Can you help me to resolve this situation ? Thank youp.s. see attachment
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 18, 2008 at 3:32 am #254299Hi alegioia !
It is difficult for me to detect the root of issue. Please provide me with a url of your website, I will have a look at the issue.June 18, 2008 at 5:13 am #254321Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 18, 2008 at 6:52 am #254334Hi alegioia !
You can fix it by following way below :
Open template.css file in templates/ja_edenite/css folder at about line 814 :
#ja-pathway img {
margin:1px 5px;
}
change to :
#ja-pathway img {
margin:1px 5px;
height:4px;
width:4px;
}
June 18, 2008 at 7:18 am #254341This problem is correct but the pathway of virtuemart product under, error persist, thank you very much 😀
I see the images distort. Could you help me? thank youSherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 18, 2008 at 7:43 am #254345Hi alegioia !
This is problem in path of VM , you can fix it by way below :
Open ps_product_category.php file in administratorcomponentscom_virtuemartclasses folder , find following code section :
if (file_exists( "$mosConfig_absolute_path/$imgPath" )){
$img = '<img src="' . $mosConfig_live_site . '/' . $imgPath . '" height="9" width="9" border="0" alt="arrow" />';
} else {
$imgPath = '/images/M_images/arrow.png';
if (file_exists( $mosConfig_absolute_path . $imgPath )){
$img = '<img src="' . $mosConfig_live_site . '/images/M_images/arrow.png" height="9" width="9" alt="arrow" />';
} else {
$img = '>';
}
}
change to :
if (file_exists( "$mosConfig_absolute_path/$imgPath" )){
$img = '<img src="' . $mosConfig_live_site . '/' . $imgPath . '" height="4" width="4" border="0" alt="arrow" />';
} else {
$imgPath = '/images/M_images/arrow.png';
if (file_exists( $mosConfig_absolute_path . $imgPath )){
$img = '<img src="' . $mosConfig_live_site . '/images/M_images/arrow.png" height="4" width="4" alt="arrow" />';
} else {
$img = '>';
}
}
June 18, 2008 at 8:24 am #254359Fantastic, i’ve resolved thank to you, thank you very much 😀
You are big person;)
AuthorPostsViewing 7 posts - 1 through 7 (of 7 total)This topic contains 7 replies, has 2 voices, and was last updated by alegioia 16 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
image multiple in pathway distort
Viewing 7 posts - 1 through 7 (of 7 total)