Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Center fotorama slider on a webpage

Tags:

fotorama

I'm using the beautiful and excellent Fotorama slider, but I have a question!

By default, the slider is on the top on the left!

I just want it center on the page.

I find in the .css, but i don't find the answer.

Can u help me?

like image 428
Antoine Avatar asked Dec 15 '22 19:12

Antoine


1 Answers

Add this to your CSS and you should be fine ;-)

.fotorama__wrap {
    margin: 0 auto;
}
like image 127
SandroWalet Avatar answered Feb 03 '23 12:02

SandroWalet