Solved
Vertical heading for side-by-side question option
Hi,
I am hoping to integrate a vertical heading in the Likert scale within the side-by-side question. I am informed that I would be required to use a JavaScript code and wondering whether anyone would be able to help me out with this.
Thank you!
Best answer by TomG
@Estha,
The doesn't require JavaScript, just CSS:
```
.Skin .SBS .Answers th.SBS1 {
transform: rotate(-90deg);
white-space: nowrap;
vertical-align: middle;
padding:0px;
height:100px;
}
.Skin .SBS .Answers th.SBS2 {
vertical-align: bottom;
}
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Here is a way you can do it too.
1. Open the survey question in preview mode in the browser and press ctrl+shift+c and keep the mouse pointer at that vertical header part, as shown in the image.!
.
Copy the id(highlighted by the arrow) of that element.
2. Open the java script option of side-by-side question and copy following line in onload function:
<strong>document.getElementById('style~header~QID6~7').innerHTML="Your Text";</strong>
!
3. Save the js and preview the question. You will also see the vertical header.
!
