Hello,
is it the same survey mentioned in the "fixing list dropdown alignment" thread? I think it would be possible but I don't know how easy it would be if you do it alone (because I don't know how much knowledge of Javascript and CSS you have). If your design template uses the question ID for each question you can use the ID of the question to style the question the way you like. For example it would be possible to do something like
#question330 .question-text
{
width: 80px; /*set the width so you have place on the right to add the answer*/
}
#question330 .answers
{
margin-top: -38px; /*move answer 38px up*/
margin-left: 100px; /*move answer 100px to the left.*/
}
That would be the cheap and dirty way. Perhaps there is a much better solution, I'm kind of new to CSS myself.