dyrec
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Login] Large button style instead of squared iconsJust found the button style page in the pannel.
https://app.oneall.com/applications/application/customisation/
Forum: Plugins
In reply to: [Social Login] Large button style instead of squared iconsPS:
Amazon links on your pannel goes to https://sellercentral.amazon.com/gp/homepage.html not https://developer.amazon.com/loginwithamazon/console/site/lwa/overview.htmlthanks ??
- This reply was modified 5 years ago by dyrec. Reason: typo
Thanks for the reply.
If I am sure to get this feature with the premium version, I will upgrade. Can you please confirm? thank youForum: Plugins
In reply to: [WooCommerce Cart Tab] How to open the side pannel cart when clicking a linkThanks for the reply. I solved my problem with another plugin.
regardsForum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] MailChimp for WP and AJAXAlright! thank you for your help.
Forum: Plugins
In reply to: [Plugin: Facebook Share (New) Button] Compact buttonOk
Here is my last version of the superb CSS that gives the tweetmeme look to the Facebook share (new) plugin:
.FBConnectButton { width:49px; } .fb_share_count{ background-color: #E8E8E8 !important; border:1px solid #D3D3D3; -moz-border-radius: 2px; -khtml-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; background-repeat: no-repeat; background-attachment: scroll; background-position: 0% 0%; } .fb_share_count_inner { font-size:16px; background-color: transparent !important; } .FBConnectButton_Text { font-size:1.0em; font-weight:bold !important; font-family: Helvetica,sans-serif; text-indent:-6px; } .fb_share_count_nub_top { display: block; position: absolute; left: 7px; top: 35px; width: 6px; height: 7px; background-repeat: no-repeat; background-image: url('https://img514.imageshack.us/img514/6533/89zgzk50.png')!important; }
You can check it on my website i.e : https://blog.dyrec.com/?p=731
I would recommend replacing the css3 radius properties, that doesn’t work in IE5+, by a correct background picture.
This way “Facebook share (new)” is the best looking FB sharing plugin ??
Hope it helps !
Forum: Plugins
In reply to: [Plugin: Facebook Share (New) Button] Compact buttonGood Start smcandrew !
Here is mine, it fits perfectly under tweetmeme (49px wide).
I fixed the problem concerning the text. I add an indent to left and resized the fonts.Here it is :
.FBConnectButton { width:49px; // this is to make the width position the same as my tweetmeme plugin } .fb_share_count_inner { font-size:16px; // this is to make the size of the count more consistent with my tweetmeme plugin } .FBConnectButton_Text { font-size:6px; font-weight:bold !important; font-family: Helvetica,sans-serif; text-indent:-6px; // reducing the font-size makes the width of the buttons smaller and pull the text to left // the only tradeoff is that the text is smaller (from what I've seen) }
I’m now trying to replace the picture that lacks transparency and add rounded corners…
see you.