Take a look at this example: . They have their shipping methods displayed vertically on both sides of the page. To achieve this effect, I used the following CSS:
.vertical{
transform: rotate(90deg);
transform-origin: left top 0;
position: fixed;
}
However, as I am using Foundation framework, things start acting up when I resize the screen. What I really want is a simple vertical text in just one line, which remains fixed in the middle right side of the page.