whiletrue
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Add border to Twitter FeedHi Julie,
it depends on where you want to apply the border.To start, you can add to your template style.css file a rule like this:
.really_simple_twitter_widget { border: 1px solid gray; }This applies to the complete feed content, except the title; probably more style is required, like adding margin or padding.
If you want to add border to individual tweets try this:
.really_simple_twitter_widget li { border: 1px solid gray; }If you want the border to include the widget title, try something like this:
.widget_reallysimpletwitterwidget { border: 1px solid gray; }Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Really Simple Twitter feed not updatingHi, you can try to delete the widget cache and see what happens. To do so, enable the “Erase cached data” widget option, then load the frontend site. If everything is good, disable the “Erase cached data” option and reload the frontend.
Forum: Plugins
In reply to: [Really Simple Share] Layout – Box verses ButtonThe difference is mainly about the counters position: the “button” layout shows share counters on the right, while the “box” layout shows share counters in a bigger rectangle on top.
If you don’t show the share counters, most buttons (but not all of them) are displayed quite the same way.
Forum: Plugins
In reply to: [Really Simple Share] Tweeter does not appearHi SilvioG, I can’t see your site buttons in my browsers, so I suggest you to check yout theme (there’s a JavaScript error in the “js/functions.js” file, on line 19) and to try to enable/disable the “Load scripts at the bottom of the body” advanced plugin setting.
Forum: Plugins
In reply to: [Really Simple Share] Facebook asking for confimAs stated here, the “confirm” action is an automatic feature of the Facebook Like button to avoid spam, turned on for suspicious sites by the Facebook servers. It’s a new feature and it’s often reported as buggy; if you think they messed up with your site, report the issue to the Facebook staff.
Forum: Plugins
In reply to: [Really Simple Share] Space under share buttonsHi Lars,
I replied to you yesterday there, anyway it could be useful for you and other users to have the answer also here.You can solve enabling the “html5″ mode for it in the plugin settings or putting the following code in your template style.css file:
.really_simple_share iframe { height: 25px; }Forum: Plugins
In reply to: [Really Simple Share] Facebook App IDOk, I’ll do it!
Forum: Plugins
In reply to: [Really Simple Share] How to Remove Facebook Like "Count"Hi electroset,
unfortunately you can’t remove the Facebook counter, that option is not (yet) allowed in the official Facebook Like button.Forum: Reviews
In reply to: [Really Simple Share] Worked at first then broke downGood! Thank you for replying!
Forum: Plugins
In reply to: [Really Simple Share] Change the word Blog to ArticleIt’s definitely some meta-tag related plugin, probably the all in one seo plugin.
Forum: Plugins
In reply to: [Really Simple Share] Change the word Blog to ArticleWhere do you see this text used?
Forum: Plugins
In reply to: [Really Simple Share] Buttons align vertically instead of horizontallyHi TeaSquare,
there’s something wrong in your site header, the plugin’s CSS filehttp://the10000hourexperiment.com/wp-content/plugins/really-simple-facebook-twitter-share-buttons/style.cssis not linked. Did you install the plugin manually or did you change its directory name? Anyway clean uninstall/reinstall should solve the issue.Forum: Plugins
In reply to: [Really Simple Twitter Feed Widget] Chang font size and twitter icon positionHi naastje,
you can add the CSS rules directly in the style.css file of your theme.As for the Twitter icon near to the tweets,you can try a CSS like this:
ul.really_simple_twitter_widget li { padding-left: 18px; background: url(wp-content/plugins/really-simple-twitter-feed-widget/twitter_small.png) no-repeat; list-style: none; }Forum: Plugins
In reply to: [Really Simple Share] Change justificationHi PCAPCA,
you can align the buttons to the right with a CSS rule similar to that:
body .really_simple_share div { float:right; }You can center the buttons with CSS, them giving their surrounding div a fixed width, like this:
.really_simple_share { width: 300px; margin: 0 auto; }
Find the best width (approx 100px for every button) and put the code in your theme “style.css” file.Hi Pip1966, in recent plugin releases Retweets are included by default. You can also enable/disable them and control which thumb is shown using the plugin options.