pierreg_
Forum Replies Created
-
Done. Thanks for the information.
Hi,
Thank you for the fix, it’s ok now (the backup fails as expected when there’s no more space on Dropbox).
Pierre
Here is the log file : https://1drv.ms/t/s!AjAJaaEkC-Z5gYgI62_Tkl0aUxGC_A
Forum: Plugins
In reply to: [Magic Embeds] change the thumbnail width and heightHi,
To increase thumbnails size :
1) Open the “default.css” file in the wp-content/plugins/wp-embed-facebook/templates/default directory
2) Find the following string :
img.thumbnail{border:1px solid gray;border-radius:2px;height:60px !important;margin:1px;padding:2px;width:60px !important}
3) Deleting the “height:60px !important;” and “width:60px !important” strings allows to have the standard size of the Facebook thumbnails (it seem’s to be 136 px max). On the way, the thumbnails aren’t distorted any more 🙂
You could also replace “60px” on “height” and “width” by the value you want (with the risk of seeing big pixels).Forum: Plugins
In reply to: [Magic Embeds] Photo thumbnail sizeHi,
I’m a user of this plugin, and just found a way to increase thumbnails size :
1) Open the “default.css” file in the wp-content/plugins/wp-embed-facebook/templates/default directory
2) Find the following string :
img.thumbnail{border:1px solid gray;border-radius:2px;height:60px !important;margin:1px;padding:2px;width:60px !important}
3) Deleting the “height:60px !important;” and “width:60px !important” strings allows to have the standard size of the Facebook thumbnails (it seem’s to be 136 px max). On the way, the thumbnails aren’t distorted any more 🙂Note : I find strange that the plugin doesn’t use the “default.css” file that I previously copied following the “Extending” instructions of http://www.wpembedfb.com/documentation/
I fear that my modification won’t resist next plugin update 🙁I’ve just commented the lines 226 and 227 of
ajax-page-loader.jsand now it seems working OK in IE.
Here are the code that cause me problem :jQuery('#' + AAPL_content).css("position", "absolute"); jQuery('#' + AAPL_content).css("left", "20000px");I’m surprised nobody else has encountered this problem.
I just find the code to reload “facebook photo fetcher” plugin :
jQuery("a.fbPhoto").fancybox({ "transitionIn" : "elastic", "transitionOut" : "elastic", "titlePosition" : "inside", "titleFormat" : function(title, currentArray, currentIndex, currentOpts) { return "<span id=\'fancybox-title-over\' style=\'background-image:none; text-align:left;\'>" + (title.length ? title : "") + "</span>"; } });