- This topic has 2 replies, 2 voices, and was last updated 12 years ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › How to center a shortcode in the sidebar widget
I am using the following shortcode on my blog in a side bar.
[wp_eStore_random_products number=3 style=6 type=1 cat_id=3]
Is there a way to center those products?
You can look at the sidebar in the following link
[http://freeyourmindonline.net/ebookstore/]
In the sidebar under Ebook store specials.
Put this code in your “wp_eStore_custom_style.css” file and it should center those products:
.textwidget .eStore_fancy6 {
margin-left: auto;
margin-right: auto;
float: none;
}
It works. Thank you so much.