- Posts: 11
- Thank you received: 0
- Community
- Forums
- English support forums
- Design issues
- Remove .answer-container from Text Display questions
Remove .answer-container from Text Display questions
3 years 4 months ago #139612
by alimeaday
Remove .answer-container from Text Display questions was created by alimeaday
Hello,
When i use a "Text Display" type, i still get an ugly empty box below the text.
Upon further inspection it seems there is still a .answer-container in the html and it has an outline which creates that box.
If i disable that in the css it goes away for all questions which is not what i want. I want to disable it only on questions which are of the Text Display type. What is the best practice approach to do that?
I use the latest version "250plus-build160725" and use the default template.
Is this even a bug? Because i do not think that is a good display of a Text Display.
When i use a "Text Display" type, i still get an ugly empty box below the text.
Upon further inspection it seems there is still a .answer-container in the html and it has an outline which creates that box.
If i disable that in the css it goes away for all questions which is not what i want. I want to disable it only on questions which are of the Text Display type. What is the best practice approach to do that?
I use the latest version "250plus-build160725" and use the default template.
Is this even a bug? Because i do not think that is a good display of a Text Display.
Please Log in or Create an account to join the conversation.
3 years 4 months ago #139615
by Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Replied by Joffm on topic Remove .answer-container from Text Display questions
Hi, allmeaday,
sorry, I cannot reproduce your problem (see screenshot)
And I do not see any answer container class in the code.
So please provide a sample survey or at least a screenshot.
Kind regards
Joffm
sorry, I cannot reproduce your problem (see screenshot)
And I do not see any answer container class in the code.
So please provide a sample survey or at least a screenshot.
Kind regards
Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Please Log in or Create an account to join the conversation.
3 years 4 months ago - 3 years 4 months ago #139618
by alimeaday
Replied by alimeaday on topic Remove .answer-container from Text Display questions
Hello Joffm,
first of all thank you for taking the time!
Here is a link and i attach a screenshot as well.
haller-it.com/limesurvey/index.php?r=sur...x&sid=846472&lang=en
Update: It seems to show only if i use Chromium as browser, in Firefox it does not show.
first of all thank you for taking the time!
Here is a link and i attach a screenshot as well.
haller-it.com/limesurvey/index.php?r=sur...x&sid=846472&lang=en
Update: It seems to show only if i use Chromium as browser, in Firefox it does not show.
Last edit: 3 years 4 months ago by alimeaday.
Please Log in or Create an account to join the conversation.
- DenisChenu
-
- Offline
- LimeSurvey Community Team
-
Less
More
- Posts: 12003
- Karma: 413
- Thank you received: 2190
3 years 4 months ago #139622
by DenisChenu
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
An error happen ? Before make a new topic : remind the Debug mode .
Replied by DenisChenu on topic Remove .answer-container from Text Display questions
Hi,
github.com/LimeSurvey/LimeSurvey/blob/ma...s/question.pstpl#L24
In default template : seems to be set in display:none via javascript and not via css. But it's easy to do it in css
framagit.org/Shnoulle/SkeletonQuest/blob...y-ui-custom.css#L768
.boilerplate .answer-container,.boilerplate .question-help-container{display:none}
github.com/LimeSurvey/LimeSurvey/blob/ma...s/question.pstpl#L24
In default template : seems to be set in display:none via javascript and not via css. But it's easy to do it in css
framagit.org/Shnoulle/SkeletonQuest/blob...y-ui-custom.css#L768
.boilerplate .answer-container,.boilerplate .question-help-container{display:none}
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
An error happen ? Before make a new topic : remind the Debug mode .
The following user(s) said Thank You: alimeaday
Please Log in or Create an account to join the conversation.
3 years 4 months ago #139801
by alimeaday
Replied by alimeaday on topic Remove .answer-container from Text Display questions
Thank you all !
Please Log in or Create an account to join the conversation.
- asilbering
-
- Offline
- Junior Lime
-
Less
More
- Posts: 32
- Thank you received: 0
1 month 4 weeks ago #189804
by asilbering
Replied by asilbering on topic Remove .answer-container from Text Display questions
Hi,
I am having the same problem (see image). I use Limesurvey 2.05+ (I am not sure about the template because it is an institutional installation and I don't have full admin rights).
I tried to use the script below (adapted from the manual with my very limited java scripting skills)
<script charset="utf-8" type="text/javascript">
$(document).ready(function() {
$('input[name="593461X3735X55622"]').attr('hidden', 'hidden');
});</script>
but this didn't work.
Where would I need to insert the code suggested by Denis? (.boilerplate .answer-container,.boilerplate .question-help-container{display:none}). Also in the source of the question text? Do I need to add any additional code? (as you can see I am not familiar with CSS either).
Thanks a lot in advance for your help.
Best regards,
Ana
I am having the same problem (see image). I use Limesurvey 2.05+ (I am not sure about the template because it is an institutional installation and I don't have full admin rights).
I tried to use the script below (adapted from the manual with my very limited java scripting skills)
<script charset="utf-8" type="text/javascript">
$(document).ready(function() {
$('input[name="593461X3735X55622"]').attr('hidden', 'hidden');
});</script>
but this didn't work.
Where would I need to insert the code suggested by Denis? (.boilerplate .answer-container,.boilerplate .question-help-container{display:none}). Also in the source of the question text? Do I need to add any additional code? (as you can see I am not familiar with CSS either).
Thanks a lot in advance for your help.
Best regards,
Ana
Please Log in or Create an account to join the conversation.
Less
More
- Posts: 8548
- Karma: 621
- Thank you received: 2621
1 month 4 weeks ago - 1 month 4 weeks ago #189829
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Official LimeSurvey Partner - partnersurveys.com
Replied by tpartner on topic Remove .answer-container from Text Display questions
Depending on the template, place this in the source of the question text:
<style type="text/css">
.boilerplate .answer,
.boilerplate .survey-question-help {
display:none;
}
</style>
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Official LimeSurvey Partner - partnersurveys.com
Last edit: 1 month 4 weeks ago by tpartner.
The following user(s) said Thank You: asilbering
Please Log in or Create an account to join the conversation.
- asilbering
-
- Offline
- Junior Lime
-
Less
More
- Posts: 32
- Thank you received: 0
1 month 4 weeks ago #189840
by asilbering
Replied by asilbering on topic Remove .answer-container from Text Display questions
Works like a charm! Thanks! I am learning a lot!
Please Log in or Create an account to join the conversation.