- Posts: 12
- Thank you received: 1
Welcome to the LimeSurvey Community Forum
Ask the community, share ideas, and connect with other LimeSurvey users!
Hide values of a slider
- LolaTx
-
Topic Author
- Offline
- New Member
-
Less
More
6 months 1 week ago #241599
by LolaTx
Hide values of a slider was created by LolaTx
Hi LimeSurvey Community,
I'm using LimeSurvey version 3.28 (template : fruity), the LimeSurvey server is hosted by my university. Sorry in advance for my english, I'm a French speaking.
What I try to do is hiding the value of the slider as in : forums.limesurvey.org/forum/can-i-do-thi...ue-when-using-slider . It seems that to achieve this, I need to add a line of code in the custom.css file, my problem is that I do not have access to this file (see screenshot). I also looked at the following tutorial ( www.youtube.com/watch?v=z2X_nURvnM8 ), but I'm not sure I understood if this was also a way to acces the custom.css file.
Is there maybe another way to solve my problem ?
Best wishes,
Lola
I'm using LimeSurvey version 3.28 (template : fruity), the LimeSurvey server is hosted by my university. Sorry in advance for my english, I'm a French speaking.
What I try to do is hiding the value of the slider as in : forums.limesurvey.org/forum/can-i-do-thi...ue-when-using-slider . It seems that to achieve this, I need to add a line of code in the custom.css file, my problem is that I do not have access to this file (see screenshot). I also looked at the following tutorial ( www.youtube.com/watch?v=z2X_nURvnM8 ), but I'm not sure I understood if this was also a way to acces the custom.css file.
Is there maybe another way to solve my problem ?
Best wishes,
Lola
Attachments:
Please Log in to join the conversation.
- tpartner
-
- Offline
- LimeSurvey Community Team
-
Less
More
- Posts: 10356
- Thank you received: 3585
6 months 1 week ago - 6 months 1 week ago #241602
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Hide values of a slider
To access the custom.css file, you will need to extend the survey theme.
- manual.limesurvey.org/New_Template_System_in_LS3.x/en
- manual.limesurvey.org/New_Template_System_in_LS3.x/en
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 6 months 1 week ago by tpartner.
Please Log in to join the conversation.
- jelo
-
- Offline
- Platinum Member
-
Less
More
- Posts: 5017
- Thank you received: 1250
6 months 1 week ago #241603
by jelo
The meaning of the word "stable" for users
www.limesurvey.org/forum/development/117...ord-stable-for-users
Replied by jelo on topic Hide values of a slider
Perhaps you don't have the user rights to extend (copy) a theme and use the theme editor.
Take a look a the theme editor here:
manual.limesurvey.org/New_Template_System_in_LS3.x#Theme_Editor
That's where you see an interface which you need to find.
You can only modify themes, which you extend. Your screenshot only showed the themes which come with LimeSurvey. Find an button to extend fruity and then modify that theme.
Take a look a the theme editor here:
manual.limesurvey.org/New_Template_System_in_LS3.x#Theme_Editor
That's where you see an interface which you need to find.
You can only modify themes, which you extend. Your screenshot only showed the themes which come with LimeSurvey. Find an button to extend fruity and then modify that theme.
The meaning of the word "stable" for users
www.limesurvey.org/forum/development/117...ord-stable-for-users
Please Log in to join the conversation.
- LolaTx
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 12
- Thank you received: 1
6 months 1 week ago #241604
by LolaTx
Replied by LolaTx on topic Hide values of a slider
Dear tpartner and jelo,
Thank you both for the quick answers. The problem I have is that there isn't any button that allows me to extend and modify themes...
Thank you both for the quick answers. The problem I have is that there isn't any button that allows me to extend and modify themes...
Please Log in to join the conversation.
- Joffm
-
- Offline
- LimeSurvey Community Team
-
Less
More
- Posts: 11769
- Thank you received: 3639
6 months 1 week ago #241605
by Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Replied by Joffm on topic Hide values of a slider
Hi,
if you really have no access to the theme editor, you always can put this code into the question text (in source code mode)
Joffm
if you really have no access to the theme editor, you always can put this code into the question text (in source code mode)
Code:
<style type="text/css"> .slider .tooltip { display:none !important; } </style>
Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Please Log in to join the conversation.
- tpartner
-
- Offline
- LimeSurvey Community Team
-
Less
More
- Posts: 10356
- Thank you received: 3585
6 months 1 week ago #241613
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Hide values of a slider
My guess is that if the themes are locked down, the xss filter is also activated so you may not be able to insert CSS. If that is the case, you will need to talk to the system administrators.
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Please Log in to join the conversation.
- LolaTx
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 12
- Thank you received: 1
6 months 1 week ago #241632
by LolaTx
Replied by LolaTx on topic Hide values of a slider
Dear Joffm,
That works perfectly, thanks a lot!
That works perfectly, thanks a lot!
Please Log in to join the conversation.