6

I am using magento 2 porto theme. In product details page i need to set the thumbnail of fotorama slider to left as vertical. Is it possible?? Please help

Akhaya Satapathy
  • 124
  • 1
  • 2
  • 8

1 Answers1

26

Go to the the file app/design/frontend/Vendor/Theme/etc/view.xml

We can see a variable navdir.

This variable has ability to change the thumbnails alignment in Fotorama.

By default it is set as:

<var name="navdir"> horizontal</var>

Change the code like this:

<var name="navdir"> vertical</var>

to make the thumbnails as vertical.

VIPIN A ROY
  • 1,761
  • 5
  • 28
  • 41