I want to add a slideshow in a post using the shortcode, but I want to have it right justified so it has text to the left. How can I do this?
I want to add a slideshow in a post using the shortcode, but I want to have it right justified so it has text to the left. How can I do this?
Never mind. This works:
<table style="margin-right:1.4em;" align="right"><tr><td>[meteor_slideshow]</td></tr></table>
I found it on this site which has more details on aligning shortcode:
http://wpbtips.wordpress.com/2009/04/06/positioning-shortcode-objects-pt-1/
Hi, good to see you got it working, I would recommend using tables like that though. You can use CSS to align the slideshow how you want it.
You could use a custom stylesheet, or just add some CSS to your theme's stylesheet like this:
#meteor-slideshow {
float: right;
margin: 0 0 10px 10px;
}
That would work for one slideshow, if you are using multiple slideshows, you would want to use the ID of the slideshow you want to style.
You must log in to post.