The Mega Menu on my website (under the Resources header) works fine on Chrome, but not Firefox. The image in the menu appears full sized instead of being automatically scaled.
Hi bill!
Can you test our demo and let us know if that is happening there also?
Regards,
Basilis
Hi Basilis,
Thanks for your reply, but your demo doesn’t seem to have an image in a mega menu.
Hey!
Please try to use smaller image or try to limit the width of the image with this in the Quick CSS field:
#top #header .avia_mega_div > .sub-menu > li > ul li img { max-width: 200px; }
If it doesn’t work, use this:
#top #header .avia_mega_div > .sub-menu > li > ul li img { width: 200px; }
Regards,
Ismael
Thanks, I got it. For the record, I fixed it by adding CSS styles directly in the description of the menu.
The code I used to display the image in the first place is
<img src="http://website.com/img.jpg" title="" alt="" />
And I fixed the bug by using
<img src="http://website.com/img.jpg" title="" alt="" style="max-width: 200px;" />
It’s neither pretty nor perfect, but it works. Thanks for all your help!