Posts

Showing posts from April, 2019

Perfect Position in Career Module

/*************** HUBL Code *********************/ {% if dynamic_page_hubdb_row %}    <div id="open-position">   <div class="page-center">     <h2 class="open-position-title">{{ dynamic_page_hubdb_row.job_title }}</h2>     <div class="row details">       <h2 class="open-position-subtitle">Job Description</h2>       {{ dynamic_page_hubdb_row.job_description }}     </div>     <div class="row details">       <h2 class="open-position-subtitle">Job Requirements</h2>       {{ dynamic_page_hubdb_row.job_requirements }}     </div>      <div class="row btn-block">       <button type="button" id="btn-apply" data-toggle="modal" data-target="#question-popup">Apply</button>     </div>   </div> </div> {% elif...

Back To Top

/**************** Simple Script ****************/ $('.footer-container-wrapper').after(' '); $("#back-to-top").hide(); $(function () { $(window).scroll(function(){ if ($(window).scrollTop()>100){ $("#back-to-top").fadeIn(500); } else { $("#back-to-top").fadeOut(500); } }); //back to top $("#back-to-top").click(function(){ $('body,html').animate({scrollTop:0},500); return false; }); });

Fusion Icomoon Css

HubDb Multiple Filter Search with Load More

{% if module.hubdb_table %} Search by market segment All market segments {% set types = hubdb_table_column(module.hubdb_table, "market_segment").options %} {% for choice in types %} {% set type_list = type_list~choice.id|list%} {% if choice.id == request.query_dict.market_segment%} {{ choice.name }} {% else %} {{ choice.name }} {% endif %} {% endfor %} Search by resource type All resources {% set types = hubdb_table_column(module.hubdb_table, "resource_type").options %} {% for choice in types %} {% set type_list = type_list~choice.id|list%} {% if choice.id == request.query_dict.resource_type%} {{ choice.name }} {% else %} {{ choice.name }} ...

Avada Tooltip

@**** HTML Code **********@ Facebook Linkedin /********** @ CSS Code @ **********/ .tooltip { position: absolute; z-index: 1030; display: block; visibility: visible; font-size: 12px; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #d1d1d2; text-align: center; text-decoration: none; background-color: rgba(33, 33, 33, 0.97); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .tooltip-arrow { position: absolute; width: 0; height: 0; borde...