I have a question that is a text/graphic that is being created from an embedded link. I want this question to be able to extend to the edge of the screen. Below this there will be other open end and single select answers that I want to stay in the current location (not extending out). I found this code from another thread that works for the entire survey when entered in the CSS, but I don’t want it to do all questions.
.Skin .SkinInner {
width: 100% !important;
max-width: 100% !important;
}
I also tried putting javascript in with no success:
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("#"+this.questionId).find('.SkinInner').css("max-width", "100% !important");
});
Here is the link to the other thread: