Hello Dear Qualtrics community,
I've been trying to fix the whole content of the survey (question container) on the right side of the screen for several hours now.
It should be extremely easy but I think I'm on the edge of my seat. Can you help me?
I am new to Qualtrics. Please forgive me if I haven't understood some obvious things yet.
EDIT: Solved It. Sorry! It worked without a logo.
Greetings,
Max
Solved
Align the question container on the right side of the screen.
Best answer by moowil
Give this CSS a shot.
.Skin .SkinInner {
margin: 0 0 0 auto;
}
In case the default styles are winning the cascade battle, you can either append !important
.Skin .SkinInner {
margin: 0 0 0 auto !important;
}
or use a heavier base selector:
.Skin #Wrapper .SkinInner {
margin: 0 0 0 auto;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
