- Posts: 12
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
<style type="text/css"> #ls-button-previous { display: none; } </style>
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Did you insert the shown css snippet in all questions where you want to hide?If I allow the "return button" for all of them, I do not have the "hide the back button" where wanted.
Here you have to show it by javascript, likeIf hide it generally by adding your code to the "custom.css" and show it in this one question. I have only so called "CSS class(es)", which did not work out by this code.
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#ls-button-previous').show(); }); </script>
.no-prev #ls-button-previous { display: none; }
Please Log in to join the conversation.
Please Log in to join the conversation.