First of all, thank you for this excellent module!
I set up a slideshow that currently contains several items. By default, these items are aligned vertically. I would align them horizontally. Is there an option for that? Otherwise, what is the best way to do it?
Thanks in advance.
Comments
Comment #1
jhuon commentedForget it. A float: left CSS property did the trick
Comment #2
alfonsobarreiro commentedCan you share how you got the float: left CSS?
I've tried various IDs and classes in CSS, and haven't been able to get the horizontal alignment.
Thank you!!!
Comment #3
jaime_pomales commentedI came here looking for the same information. After poking around in the CSS, I found a combination that works.
Here I share my little fix so that others may not be as frustrated.
#views_slideshow_singleframe_main_MY-VIEW-NAME-block_1 .views-row {
float: left;
margin-left: 20px; <-- Apply margin if your items are too close.
}
Just look for the parent ID on the views slideshow and style its row children as float left. That will collapse the vertical column and things will work out nicely.
Comment #4
pelehton commentedIm really new on Drupal so could somebody write step by step instructions how to make the slide show horizontal? The module is really nice by the way.
Thanks for the help.
Comment #5
stealthbyroot commentedSame problem. How to make the slide show horizontal?
Please.