- Posts: 32
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
{# Bootstrap Navigation Bar: the top menu #} {% block nav_bar %} {{ include('./subviews/header/nav_bar.twig') }} {% endblock %}
Please Log in to join the conversation.
{% if not aSurveyInfo.popupPreview %} <!-- Bootstrap Navigation Bar --> <div id="survey-nav" class="navbar fixed-top"> <div class="container-fluid col-xl-8"> {% if( aSurveyInfo.options.brandlogo == "on") %} <div class="navbar-brand logo-container d-none d-md-block"> {{ image(aSurveyInfo.options.brandlogofile, aSurveyInfo.name, {"class": "logo img-fluid"}) }} </div> {% endif %} <div id="navbar-menu" class="dropdown ms-auto ls-no-js-hidden"> {% if( aSurveyInfo.aNavigator.load.show == "Y" or aSurveyInfo.aNavigator.save.show == "Y" or ((aSurveyInfo.bShowClearAll == true or aSurveyInfo.bShowClearAll == null) and aSurveyInfo.options.showclearall == 'on') or aSurveyInfo.aQuestionIndex.bShow == true or aSurveyInfo.alanguageChanger.show == true) %} <ul id="main-dropdown" class=""> {{ include('./subviews/navigation/language_changer_top_menu.twig') }} {{ include('./subviews/navigation/save_links.twig') }} {{ include('./subviews/navigation/question_index_menu.twig') }} {{ include('./subviews/navigation/clearall_links.twig') }} </ul> {% endif %} </div> <ul id="back-content" class="d-none"></ul> </div> </div> {% endif %}
#survey-nav ul { list-style: none; } #survey-nav ul li { display: inline-block; }
Please Log in to join the conversation.
.nav-link { color: #777; font-size: 1.3rem; }
Please Log in to join the conversation.