roseandmoon
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress.org Forums account email change problemThis: https://profiles.wordpress.org/roseandmoon/profile/edit/group/1/ did not work. The message at the top is still there and the email will not change.
I will contact forum-password-resets@wordpress.org.
Thanks for your assistance. 🙂Forum: Everything else WordPress
In reply to: WordPress.org Forums account email change problemI selected the ‘edit’ link beside my email on my Profile page and it took me to here: https://wordpress.org/support/users/roseandmoon/edit/
Forum: Plugins
In reply to: [M-vSlider] Missing admin sectionsResolved. It only shows on random setting.
Great plugin, though.Now it gives this error:
Warning: simplexml_load_file(https://api.twitter.com/1/statuses/user_timeline.xml?screen_name=RosesAndMoons&count=10) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in /home/roseandm/public_html/wp-content/plugins/multi-twitter-stream-by-wsyms/widget.php on line 171
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity “https://api.twitter.com/1/statuses/user_timeline.xml?screen_name=RosesAndMoons&count=10” in /home/roseandm/public_html/wp-content/plugins/multi-twitter-stream-by-wsyms/widget.php on line 171
Fatal error: Call to a member function children() on a non-object in /home/roseandm/public_html/wp-content/plugins/multi-twitter-stream-by-wsyms/widget.php on line 173
….and nothing beyond this widget shows up, including the footer.
I have removed the widget, but I like its functionality, so could you address this issue, please.
Forum: Themes and Templates
In reply to: Post and content upside downTake this code out for starters:
<?php the_content( $more_link_text, $stripteaser ); ?>I think it needs to be within here:
<div class="art-PostContent"> <?php //if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry »', 'kubrick')); ?> <?php //if (is_page() or is_single()) wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> <?php echo $the_output;$the_output = ''; ?> </div>…but I’m not quite sure the correct syntax.
Perhaps someone more knowledgable in this aspect could suggest.Forum: Plugins
In reply to: Slidershow category pluginCan you post a link to one of the sites which has the plugin you want?
Forum: Plugins
In reply to: Slidershow category pluginThere are many different plugins written for WordPress. Type “slideshow category” into the search form here: http://wordpress.org/extend/plugins/
Forum: Themes and Templates
In reply to: Gridly theme – number of posts displayed per pageYour site wrapper is 920px wide.
Your images are 310px wide with a 10px right margin, so 310+10=320px and 320×3=960px.
You would either have to reduce the width of the images, or widen the wrapper and its inside components, in order to have 3 images across.Forum: Themes and Templates
In reply to: Adding trademark sign to website titleUse the HTML entity ® directly behind your business name in the site title in General Settings: http://www.w3schools.com/tags/ref_entities.asp
Forum: Themes and Templates
In reply to: Post and content upside downNeed your code for index.php pasted in Pastebin, as alchymyth suggested.
Forum: Themes and Templates
In reply to: Gridly theme – number of posts displayed per pageI see 3 columns @ http://catillest.com/portfolio.html
Forum: Themes and Templates
In reply to: Change height of blank breaks in Widgets (sidebar)If you mean between the widgets themselves, then alter the margin element to this:
.widget { clear: both; margin: 0 0 2.2em; }The “2.2em” is the bottom margin on every widget. Reduce this.
Forum: Themes and Templates
In reply to: How to change the height of header on twenty elevenYou would alter the height of your theme’s header in the theme’s “style.css” file.
Forum: Themes and Templates
In reply to: Grey background in twenty eleven.You have:
body.custom-background { background-color: #F1F1F1; }…in the HEAD, which means either you have a background color in Appearance > Background >> Display Options > Background Color or a plugin which is causing this.
If you can’t find the source, use this in the css:body.custom-background { background-color: #fff !important; }It is best to create a Child Theme for any alterations, though.
Forum: Themes and Templates
In reply to: [Hatch] [Theme: Hatch] How do I add a blog link to the headerThen a simple way would be to add the link to your menu via Appearance > Menu, as Gitominoti suggested, and the link url would be – http://www.runspotrun.com/author/mark – because it would show all the posts by you.