- Posts: 6
- Thank you received: 0
Re-sizing of images in IE
-
shoke
Inactive member - Topic Author
- New Member
Less
More
11 years 1 month ago #34822
by shoke
Re-sizing of images in IE was created by shoke
Hello,
Image are displaying properly (except for the order) in all browser except IE9-10. My image are normaly 1980 by 1200 that need to fit in 700 pixels. To fix my IE issue I re-sized all my image to be 700 pixels larges. Now I've got only one issue, in IE the thumbnails are not re-sizing which cause navigation issues. Let me know if it's something that can be fixed or option that I need to turn on off.
If you want to see the result you can go to julie-stephane.com/index.php/a-vendre-2/8-qc10673890 .
Thanks,
Note: I'm planning to by the full version if I can get all my bugs fixed.
Image are displaying properly (except for the order) in all browser except IE9-10. My image are normaly 1980 by 1200 that need to fit in 700 pixels. To fix my IE issue I re-sized all my image to be 700 pixels larges. Now I've got only one issue, in IE the thumbnails are not re-sizing which cause navigation issues. Let me know if it's something that can be fixed or option that I need to turn on off.
If you want to see the result you can go to julie-stephane.com/index.php/a-vendre-2/8-qc10673890 .
Thanks,
Note: I'm planning to by the full version if I can get all my bugs fixed.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 month ago #34827
by ivan.milic
Replied by ivan.milic on topic Re-sizing of images in IE
Open this file:
modules/mod_hot_joomla_gallery/js/slideViewerPro.js
at bottom add:
jQuery(document).ready(function(){
jQuery("*[width]").each(function(i){
jQuery(this).css('width',jQuery(this).attr('width'));
});
jQuery("*[height]").each(function(i){
jQuery(this).css('height',jQuery(this).attr('height'));
});
});
modules/mod_hot_joomla_gallery/js/slideViewerPro.js
at bottom add:
jQuery(document).ready(function(){
jQuery("*[width]").each(function(i){
jQuery(this).css('width',jQuery(this).attr('width'));
});
jQuery("*[height]").each(function(i){
jQuery(this).css('height',jQuery(this).attr('height'));
});
});
Please Log in to join the conversation.
-
shoke
Inactive member - Topic Author
- New Member
Less
More
- Posts: 6
- Thank you received: 0
11 years 1 month ago #34829
by shoke
Replied by shoke on topic Re-sizing of images in IE
Thanks for the suggestion but it's not working. Attach you will find the js file in question to make sure I put the code at the right place.
Regards,
Shoke
Regards,
Shoke
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 month ago #34835
by ivan.milic
Replied by ivan.milic on topic Re-sizing of images in IE
try:
jQuery(window).load(function(){
jQuery("*[width]").each(function(i){
jQuery(this).css('width',jQuery(this).attr('width'));
});
jQuery("*[height]").each(function(i){
jQuery(this).css('height',jQuery(this).attr('height'));
});
});
};
jQuery(window).load(function(){
jQuery("*[width]").each(function(i){
jQuery(this).css('width',jQuery(this).attr('width'));
});
jQuery("*[height]").each(function(i){
jQuery(this).css('height',jQuery(this).attr('height'));
});
});
};
Please Log in to join the conversation.
-
shoke
Inactive member - Topic Author
- New Member
Less
More
- Posts: 6
- Thank you received: 0
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 month ago #34859
by ivan.milic
Replied by ivan.milic on topic Re-sizing of images in IE
Use this in attachment
Please Log in to join the conversation.
Time to create page: 0.171 seconds