Viewing on Internet Explorer

0
Hello, I have a big problem with your component and joomla 1.5.21.
The problem is to display the Home Page on Internet Explorer 7 / 8. Using the same template (js jamba) and version 2.0.1 of Music Collection.
If I open the site with Firefox or Chrome's all right, but if I open the site with Internet Explorer 8 (even in compatibility mode) the part where I placed the modules etc featured_album. you see terrible! In addition, the images are not resized according to the parameters I have selected in the component.

Since I use the same template of your website can I find out how you can see that http://www.joomlamusicsolutions.com correctly on IE and my site does not?

How can I fix it?
Thanks

NB: in the attached picture you can see on the left of my site loaded up IE8, while on the right, the same site loaded with Firefox. http://www.joomlamusicsolutions.com/images/fbfiles/images/Pubblicazione1.jpg" alt="http://www.joomlamusicsolutions.com/images/fbfiles/images/Pubblicazione1.jpg" />
Attachments:
Responses (4)
  • Accepted Answer

    Monday, December 06 2010, 09:16 AM - #Permalink
    0
    UP :blink:
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 06 2010, 11:31 AM - #Permalink
    0
    this is strange.

    the best and easiest thing you can do is to fix the image widht using CSS.

    The picture has the class="artist_picture"
    so, go to your template css file, and add some

    .artist_picture{
    width:200px;
    }

    or whatever the widht should be. do you know what i mean?
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 06 2010, 12:03 PM - #Permalink
    0
    I'm sorry, I solved the problem most likely used the form of a previous version of Music Collection, I solved mod_muscol_featured_artists overwriting the module with the one for version 2.0 now the site is displayed correctly on Internet Explorer, thanks.
    The reply is currently minimized Show
  • Accepted Answer

    Lisa Kuhn
    Lisa Kuhn
    Offline
    Sunday, January 09 2011, 12:27 AM - #Permalink
    0
    I was having the same problem, but Germi's suggestion of adding the width: 200px in CSS fixed my problem. I just wanted to detail how I fixed this.

    This is assuming you want your artist picture size to be 200px. Change size as needed.

    Go into modules/mod_muscol_featured_artists/tmpl/featured_artists.css

    Find .artist_data_wrapper .artist_picture around line 60

    It probably was:

    .artist_data_wrapper .artist_picture{
    width:inherit;
    }

    Change it to:

    .artist_data_wrapper .artist_picture{
    width: 200px; /* necessary for fix in IE7 */
    }
    The reply is currently minimized Show
Your Reply