Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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
}
