Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

possible to set position of dropdowns (zurb foundation)?

right now the content of dropdowns is by default to the bottom right.

Is there an option to set it so it goes to the bottom left?

(foundation 5)

like image 650
vidalsasoon Avatar asked Jan 02 '14 14:01

vidalsasoon


1 Answers

The "right" style is being applied through JS. To override this just give #contentDrop a style of #contentDrop{left: -100px !important;} or whatever value you would like to pull left. You will need to adjust the .f-dropdown:after{left:XXpx !important;} and .f-dropdown:before{left:XXpx !important;} stylings to bring the little triangle to the right of the dropdown box.

like image 151
Bill Dukelow Avatar answered Jan 02 '23 20:01

Bill Dukelow