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

jhuon’s picture

Status: Active » Closed (fixed)

Forget it. A float: left CSS property did the trick

alfonsobarreiro’s picture

Can 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!!!

jaime_pomales’s picture

I 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.

pelehton’s picture

Im 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.

stealthbyroot’s picture

Same problem. How to make the slide show horizontal?

Please.