ismaelnavarro
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Modal] [Plugin: Easy Modal] eModal-Overlay Not Extending to BottomSorry to hear that. Welcome back IE6!. To be honest with you, I completely disabled access to my site via IE6 (plugin). I know it’s kinda unfriendly but being not a developer I saw a huge piece of work make my blog compatible for IE6 (I am considering even disabling IE7, lol). But I am aware you developers out there cannot do as simply as I did.
Anyway, via javascript I think that jquery.simplemodal.js does the trick but then it appears not to be compatible with having more than one modal. Not sure what you meant with the old way but in my case, after updating, my container stayed at the bottom (the link is actually at the bottom) so when the user scrolled up, the container was ‘lost’ out of sight. Not a big issue but didn’t quite like it. So hence the code I used.
Hope someone out there will be more helpful.
Forum: Plugins
In reply to: [Easy Modal] [Plugin: Easy Modal] eModal-Overlay Not Extending to BottomThat did not work for me. Yet it made the overlay beyond the visible screen, it is pretty difficult to adjust it to the whole wrapper/page height. Besides, as Johnathan pointed, every browser will render it different (i.e., in my case I need to adjust it at 250% but different browsers and different monitor resolution -obviously- make that that doesn’t work: either goes beyond the footer or doesn’t cover it).
What really DID work for me was to change the position property from ‘absolute’ to ‘fixed’ in #eModal-Overlay (themes/default/styles.css). I tested on IE8, Chrome and Safari and FF (3 of them up to date) and does for me.
Apart from that, with the old versions, the modal was automaticly centered on the screen wherever you were, even if scrolling. This last version doesn’t do that any more. To make it work I just modified the easy-modal.js and added this into line 82.:
$(window).scroll(function(){
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function(){
centerModal(true);
}, 100)
});This was on the old versions but not in this last one. It might easily be on purpose by the developer, but it has worked for me so far.
Said that, please note I am quite a newbie so I’m not sure what I’m messing with. I am pretty sure all this will be solved in the next update (1.0.4?) so maybe it is worth to wait.
Any easier ideas will be much appreciated.
Forum: Plugins
In reply to: [Easy Modal] [Plugin: Easy Modal] eModal-Overlay Not Extending to BottomAgreed. The best modal out there.
But same problem here. It happens to me as well in IE8 and Chrome. No idea where it comes from, though. Used to use the .9.0.11 to avoid this issue. That being said, decided to updated to the possibility of using more than one modal.
Any help to solve the overlay then?