- Posts: 106
- Thank you received: 4
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
{% set navClass = "navbar-light bg-light" %} {% if( aSurveyInfo.template == "bootswatch") %} {% set navClass = "navbar-default bg-primary" %} {% endif %} <!-- Bootstrap Navigation Bar --> <div id="survey-nav" class="navbar {{ navClass }} navbar-expand-md fixed-top border-bottom pt-0 pb-0"> <div class="container-fluid"> <a class="navbar-brand" href="#"></a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="small-screens-menus" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> {# Logo option #} {% if( aSurveyInfo.options.brandlogo == "on") %} <div class="navbar-brand logo-container d-block d-md-none"> <img class="logo img-fluid" src="pathTo/logo-small.png" alt="Some alt text"> </div> <div class="navbar-brand logo-container d-none d-md-block"> {{ image(aSurveyInfo.options.brandlogofile, aSurveyInfo.name, {"class": "logo img-fluid"}) }} </div> {% else %} <div class="navbar-brand"> {{ aSurveyInfo.name }} </div> {% endif %} <div id="navbar" class="collapse navbar-collapse navbar-nav-scroll pt-2"> <ul class="nav navbar-nav navbar-action-link navbar-right ms-auto"> {{ include('./subviews/navigation/save_links.twig') }} {{ include('./subviews/navigation/clearall_links.twig') }} {{ include('./subviews/navigation/question_index_menu.twig') }} {{ include('./subviews/navigation/language_changer_top_menu.twig') }} </ul> </div> </div> </div>
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.