This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.lshowcase-logos .bx-wrapper .bx-viewport::before, | |
.lshowcase-logos .bx-wrapper .bx-viewport::after { | |
content: ''; | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
width: 100px; /* Adjust the width as needed */ | |
z-index:999; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// replace with your map ID and region code. | |
let mapID = 21148; | |
let mapContainer = document.getElementById('map_' + mapID); | |
mapContainer.addEventListener('mapready',function(ev){ | |
iMaps.maps[mapID].series.forEach(function(ser){ | |
ser.tooltip.ignoreBounds = true; | |
ser.tooltip.pointerOrientation = 'left'; // "horizontal", "vertical", "up", "down", "right", or "left" | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapID = 955; // replace with your map ID | |
let zoomLevel = 3; // replace with the zoom level you want to show the labels at | |
let igmNow = Date.now(); | |
function igmHideMarkers(igmap) { | |
igmNow = Date.now(); | |
let series = iMaps.maps[mapID].series; | |
series.forEach(function(serie) { | |
if (typeof serie.mapImages === 'undefined') { | |
return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('.igm_entries_list') | |
.forEach(function(list) { | |
list.setAttribute('data-map-id','3492969'); // change to your base map ID | |
var clone = list.cloneNode(true); | |
iMapsActions.buildLists(clone); | |
list.replaceWith(clone); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (min-width:780px) { | |
.imapsZoomControl-group { display:none; } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
height: initial !important; | |
} | |
/* to override height:100% which caused the issue */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function(){ | |
var thishash = window.location.href.slice(window.location.href.indexOf('#') + 1); | |
var menuitem = 'ul#tts-filter-nav li:contains("'+thishash+'")'; | |
if(thishash.length && menuitem.length){ | |
jQuery(menuitem).click(); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Incorrect */ | |
.advq_question_container:has(li.quiz_incorrect_answer) .advq_answer_commentary { background:red !important; color:#fff !important; } | |
/* Correct */ | |
.advq_question_container:has(li.quiz_correct_answer) .advq_answer_commentary { background:green !important; color:#fff !important; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.imapsCircle { | |
paint-order: stroke; | |
stroke-opacity:1; | |
stroke: #dd9933; /* change with the stroke color you want */ | |
animation: pulse-me 1s linear infinite; | |
} | |
/* or target by colour */ | |
.imapsCircle-group[fill="#1e73be"] .imapsCircle { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Replace this function in your front.php to give customers more share buttons. | |
function advq_get_after_results_content($id,$data,$options) { | |
$html = ''; | |
if(isset($data['code_after_results']) && $data['code_after_results'] != ''){ | |
$html .= '<div class="advq_integration_after_results">'; | |
if( $options['render_shortcodes_integration'] ){ |
NewerOlder