moony412
Forum Replies Created
-
Forum: Plugins
In reply to: [ITRO Popup Plugin] not responsive on mobileYou can fix this easily.
Set the width to be a percentage (eg 70%) and then edit the following file in the plugins folder:
/css/itro-style-functions.php
About half way down under the #itro_popup class you need to add a “max-width” tag. Here is my code. Not the last line, this is the one you will need to add, the other code is just to help you find where it is.
width: <?php if( itro_get_option('select_popup_width') == 'px') { echo itro_get_option('px_popup_width') . 'px'; } if( itro_get_option('select_popup_width') == 'perc') { echo itro_get_option('perc_popup_width') . '%'; }?>; max-width: 500px;Now just change the value of the max-width until you’re happy with how it looks.
Forum: Plugins
In reply to: [Firelight Lightbox] Conflict with jQuery Updater PluginI had the same problem. JQuery updater would fix by slider but break Easy FancyBox.
I fixed it after I found this.
http://stackoverflow.com/questions/15324692/force-specific-version-jquery-wordpressI just set the jQuery version to 1.8.1 and it made them both happy. Hope that helps!!
Hi guys,
I had the same exact problem. Updated to the latest version and it went back to normal.
May be due to the changes in the Google Maps API.
Give it a crack and see if it fixes yours.