- This topic has 1 reply, 2 voices, and was last updated 13 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 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 › WP eStore Troubleshooting › Category fancy style 3 displays mess
I use fancy style display 3 for one of the categories I have. It does work but not like expected.
It does create rows and columns of products however in some row instead of having 3 products I have only 1 or 2, it doesn’t look good.
Have a look at my site [http://estore.kupwaluty.com/ebooks/] to see what i mean.
I tried playing with css but it doesn’t help. Is there a bug?
The fancy3 works best if all the product names are of similar length and the button images you are using are of similar lenght when used in a grid view. In your case you have some product names that long enough that it is taking two lines. The ones that are taking two lines are pushing it down so the next row it is not getting enough space to place another display.
You can easily fix this by adding a fixed height for each fancy3 block. Open the custom CSS file for the eStore plugin and add the following block of CSS code:
.eStore-fancy3 {
height:280px;
}
You can adjust the “280px” value to suit your needs. For example, “300px” might work better for you.