Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Solved! Go to Solution.
it would be nice if there was a vertical slider widget, but there is not.
You can turn the horizontal one via css, but it is not exactly elegant. Here is my code to turn one in the right side pane vertical. This is a class which goes in your Styles > Application. Then on the slider widget enter "rotate90" in the class field.
.rotate90 { transform-origin: 0% 100%; //set the rotate origin to the bottom left corner transform: rotate(90deg); //rotate it 90 degrees width: 350px; //the slider width is inherited from the right pane so it will be too small, force it to me "longer" left: 40px; //use to push it over to the right edge of the pane }
it would be nice if there was a vertical slider widget, but there is not.
You can turn the horizontal one via css, but it is not exactly elegant. Here is my code to turn one in the right side pane vertical. This is a class which goes in your Styles > Application. Then on the slider widget enter "rotate90" in the class field.
.rotate90 { transform-origin: 0% 100%; //set the rotate origin to the bottom left corner transform: rotate(90deg); //rotate it 90 degrees width: 350px; //the slider width is inherited from the right pane so it will be too small, force it to me "longer" left: 40px; //use to push it over to the right edge of the pane }