Rotating Images
(Fixed spelling - from "Check our the" to "Check out the" - →Extra Customizations Policies) |
|||
| (6 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| + | Release date: January 4, 2010 (beta), March 5, 2010 (stable) | ||
| − | ==Additional Resources | + | =FAQ= |
| + | |||
| + | ==Images other than first appear lower (or smaller in height) in spite of actually being the same size== | ||
| + | |||
| + | Add the following at the end of your theme's style.css: | ||
| + | |||
| + | <pre>#rotating-images-rotator_1 img { | ||
| + | margin-top: 0; | ||
| + | }</pre> | ||
| + | |||
| + | If you add additional rotating image groups you may need to change the 1 above to 2, 3, 4 and so on for each instance. | ||
| + | |||
| + | For an explanation, see http://ithemes.com/forum/index.php?/topic/3935-image-size-changes-despite-images-being-same-size/ | ||
| + | |||
| + | '''Update''': If the above CSS code doesn't work, use the following: | ||
| + | |||
| + | <pre>#ithemesrotatingimages-1 img { | ||
| + | margin-top: 0; | ||
| + | }</pre> | ||
| + | |||
| + | Source: http://ithemes.com/forum/index.php?/topic/8989-rotating-images-position-bug/#p44454 | ||
| + | |||
| + | ==Rotating Images is blank or works only when there is one image== | ||
| + | |||
| + | Sometimes, your Rotating Images may just show a blank area with no images. There can be a couple of reasons for this: | ||
| + | |||
| + | '''1 : Corrupt or bad image''' | ||
| + | |||
| + | Sometimes one of the images you upload either do not get transferred properly or have an issue. Delete and re-upload all the images to your Rotating Images group to fix this. Make sure you delete the files completely in WordPress media and not just delete the group entries in Rotating Images. | ||
| + | |||
| + | Source: http://ithemes.com/forum/index.php?/topic/16325-rotating-images-not-showing-up-at-all/ | ||
| + | |||
| + | '''2 : Conflicting Plugins like W3 Total Cache''' | ||
| + | |||
| + | W3 Total Cache and other plugins have been known to cause conflicts from time to time. Try disabling all your other plugins while keeping Rotating Images active to solve this. | ||
| + | |||
| + | Sources: | ||
| + | |||
| + | http://ithemes.com/forum/index.php?/topic/16427-rotating-images-only-working-in-admin-after-upgrade/ | ||
| + | |||
| + | http://ithemes.com/forum/index.php?/topic/16445-rotating-images-slideshow-not-showing-up/ | ||
| + | |||
| + | http://ithemes.com/forum/index.php?/topic/16268-rotatory-images-not-displaying/ | ||
| + | |||
| + | http://ithemes.com/forum/index.php?/topic/15829-rotating-images-not-working-when-fade-option-is-chosen/ | ||
| + | |||
| + | http://ithemes.com/forum/index.php?/topic/15283-images-stopped-appearing-in-rotating-images-group/ | ||
| + | |||
| + | =Customize Rotating Images= | ||
| + | |||
| + | ==Extra Customizations Policies== | ||
| + | [http://ithemes.com/codex/page/PluginBuddy#Extra_Customizations Check out the official policy and details on any Extra Customizations] | ||
| + | |||
| + | ==Remove Top Margin in the Image Rotator== | ||
| + | |||
| + | *Add the following to your theme's css file | ||
| + | |||
| + | <pre brush="css"> | ||
| + | #rotating-images-rotator_1 img { | ||
| + | margin-top: 0; | ||
| + | } | ||
| + | </pre> | ||
| + | |||
| + | *Related link | ||
| + | **http://ithemes.com/forum/index.php?/topic/18334-rotating-images-top-margin/ | ||
| + | |||
| + | =Additional Resources= | ||
# [http://pluginbuddy.com/purchase/billboard/ Purchase Rotating Images (with Billboard)] | # [http://pluginbuddy.com/purchase/billboard/ Purchase Rotating Images (with Billboard)] | ||
# [http://pluginbuddy.com/tutorials/ PluginBuddy Tutorials] | # [http://pluginbuddy.com/tutorials/ PluginBuddy Tutorials] | ||
Latest revision as of 12:41, October 13, 2011
Release date: January 4, 2010 (beta), March 5, 2010 (stable)
Contents |
FAQ
Images other than first appear lower (or smaller in height) in spite of actually being the same size
Add the following at the end of your theme's style.css:
#rotating-images-rotator_1 img {
margin-top: 0;
}
If you add additional rotating image groups you may need to change the 1 above to 2, 3, 4 and so on for each instance.
For an explanation, see http://ithemes.com/forum/index.php?/topic/3935-image-size-changes-despite-images-being-same-size/
Update: If the above CSS code doesn't work, use the following:
#ithemesrotatingimages-1 img {
margin-top: 0;
}
Source: http://ithemes.com/forum/index.php?/topic/8989-rotating-images-position-bug/#p44454
Rotating Images is blank or works only when there is one image
Sometimes, your Rotating Images may just show a blank area with no images. There can be a couple of reasons for this:
1 : Corrupt or bad image
Sometimes one of the images you upload either do not get transferred properly or have an issue. Delete and re-upload all the images to your Rotating Images group to fix this. Make sure you delete the files completely in WordPress media and not just delete the group entries in Rotating Images.
Source: http://ithemes.com/forum/index.php?/topic/16325-rotating-images-not-showing-up-at-all/
2 : Conflicting Plugins like W3 Total Cache
W3 Total Cache and other plugins have been known to cause conflicts from time to time. Try disabling all your other plugins while keeping Rotating Images active to solve this.
Sources:
http://ithemes.com/forum/index.php?/topic/16427-rotating-images-only-working-in-admin-after-upgrade/
http://ithemes.com/forum/index.php?/topic/16445-rotating-images-slideshow-not-showing-up/
http://ithemes.com/forum/index.php?/topic/16268-rotatory-images-not-displaying/
http://ithemes.com/forum/index.php?/topic/15283-images-stopped-appearing-in-rotating-images-group/
Customize Rotating Images
Extra Customizations Policies
Check out the official policy and details on any Extra Customizations
Remove Top Margin in the Image Rotator
- Add the following to your theme's css file
#rotating-images-rotator_1 img {
margin-top: 0;
}