Ryan Yu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Full-Screen Background ImageMy pleasure 🙂
Forum: Fixing WordPress
In reply to: Full-Screen Background ImageIf you go to Gallery > Options,
under General Options, you can set up the gallery path.Hope that’s what you are after 🙂
Forum: Fixing WordPress
In reply to: Full-Screen Background ImageDid you check out NextGEN Gallery?
http://ww.wp.xz.cn/extend/plugins/nextgen-gallery/It may work for you.
Forum: Fixing WordPress
In reply to: Full-Screen Background ImageCheck out the list here… but those are commercial…
http://wpdressing.com/stunning-wordpress-portfolio-themes-to-display-fullscreen-image-slideshow-in-background/If you want to implement it yourself,
you may want to check out Supersized.
http://www.buildinternet.com/project/supersized/and here’s the tutorial how you can integrate it into WordPress.
http://garvinmedia.com/2011/04/wordpress-supersized-the-right-way/Forum: Fixing WordPress
In reply to: Sidebar Appears Below ContentCan you please use http://pastebin.com/ for the code?
Also a screenshot of your layout would help us have a better idea 🙂
Forum: Fixing WordPress
In reply to: How to fix overlapping and slightly misplaced footer?As your layout is structured like
[header box]
[page-wrap box]
[footer box]you don’t have to give any negative margin value to #page-wrap box.
Check out the site below for more about the box model.
http://www.addedbytes.com/for-beginners/the-box-model-for-beginners/Forum: Fixing WordPress
In reply to: How to fix overlapping and slightly misplaced footer?Hi Seth,
Is there any specific reason you have added margin-bottom:-220px on #page-wrap?
It should work if you change #page-wrap (line 136 on style.css) to
#page-wrap { clear: both; margin: 0 auto; width: 960px; }Forum: Fixing WordPress
In reply to: How to include posts from a category into a page?Check out this plugin:
http://ww.wp.xz.cn/extend/plugins/list-category-posts/Forum: Fixing WordPress
In reply to: center gallery on pageIt seems the padding-right has been applied throughout your whole site
so removing the padding-right would rather fix your padding issue.Try updating .post to
.post { padding: 35px 0 25px 0; }and check your whole site if they look ok.
Forum: Fixing WordPress
In reply to: center gallery on pageHi tonedru,
Seeing your style.css:
.post { padding: 35px 35px 25px 0; }You will have to remove the padding-right (35px).
It’s on line 148 of style.css.However please note that changing the .post value would affect through your whole site.
You will have to filter it so only the gallery page will have padding-right:0px;
Let us know if you need further help 🙂
Forum: Fixing WordPress
In reply to: how to set up the subscribe to blog widgetYou can use a plugin like:
http://ww.wp.xz.cn/extend/plugins/subscribe-sidebar/
or on the wordpress backend, go to Appearance > Widgets
and put the RSS widget on your sidebar and give the RSS Feed URL:http://www.your-site-name.com/feed
Refer to http://codex.ww.wp.xz.cn/WordPress_Feeds for more information about the wordpress feeds.
Forum: Fixing WordPress
In reply to: Photos not uplading properlyHi Ricky-UUCRFC,
Let’s try some options.
1. As you might have already noticed, your images would be stored in
wp-content/uploads/2011/09
Have you checked the permission of the folders (09, 2011, uploads and wp-content)? They should be writable (777/755).
2. I saw few times someone fixed the IO Error by this way.
Log in your WordPress backend and go to Settings > Media.
Under “Uploading Files”, add /wp-content/uploads in “Store uploads in this folder”.
Please note to add the slash in front of wp-content.Let’s see how those work.
Forum: Fixing WordPress
In reply to: Too much white space between content and footerAs it’s a facebook plugin, you will need to check the facebook plugin settings if you have installed any.
If you have manually added the facebook code, it would be in your sidebar.php 🙂
Forum: Fixing WordPress
In reply to: Too much white space between content and footerIn your primary sidebar, there’s a iframe with 800px height.
Forum: Fixing WordPress
In reply to: PayPalInstead of using the form code, try using an encrypted link.
After you create the paypal button on Paypal,
you will be given two options for the code.
One for “Website” and the other for “Email”.Use the link from the Email tab.