This file contains hidden or 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
<script> | |
// make sure to import your icon CDN script first | |
// Services icon swap (this is a quick way to replace system icons with FontAwesome icons | |
jQuery('.products-services[about*="/tax-planning"] .thumbnail').empty().append('<i class="fa-solid fa-sharp icon-4x text-center fa-pie-chart"></i>'); | |
jQuery('.products-services[about*="/products-services/retirement-planning"] .thumbnail').empty().append('<i class="fa-solid fa-sharp icon-4x text-center fa-compass"></i>'); | |
jQuery('.products-services[about*="/investment-planning"] .thumbnail').empty().append('<i class="fa-solid fa-sharp icon-4x text-center fa-chart-simple"></i>'); | |
jQuery('.products-services[about*="/products-services/planning-business-owners"] .thumbnail').empty().append('<i class="fa-solid fa-sharp icon-4x text-center fa-briefcase"></i>'); |
This file contains hidden or 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
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); | |
:root { | |
--h1-font-family: "DM Sans", sans-serif; | |
--h2-font-family: "DM Sans", sans-serif; | |
--h3-font-family: "DM Sans", sans-serif; | |
--h4-font-family: "DM Sans", sans-serif; | |
--body-font-family: "DM Sans", sans-serif; | |
--link-font-family: "DM Sans", sans-serif; | |
--button-font-family: "DM Sans", sans-serif; |
This file contains hidden or 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
/* QA */ | |
@media screen and (max-width: 63.9375rem) { | |
.animated-menu div.is-drilldown .drilldown .is-drilldown-submenu-parent>a::after { | |
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #333!important; | |
} | |
.animated-menu div.is-drilldown .drilldown .menu a::before { | |
border-color: rgba(0, 0, 0, 0) #333 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)!important; | |
} | |
.animated-menu div.is-drilldown .drilldown .menu a, .animated-menu div.is-drilldown .drilldown .is-drilldown-submenu { |
This file contains hidden or 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(function() { | |
jQuery('div.copyright:contains(All rights reserved)').each(function(index, elem) { | |
jQuery(elem).html(function(i,text) {return text.replace(/All rights reserved/gi, '<span class="all-rights"> - All rights reserved</span>')}); | |
}); | |
}); |
This file contains hidden or 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).ready(function() { | |
$(".content-new").hide(); | |
$(".show_hide_new").on("click", function() { | |
var txt = $(this).prev(".content-new").is(':visible') ? 'Read More' : 'Read Less'; | |
$(this).text(txt); | |
$(this).prev('.content-new').slideToggle(100); | |
}); | |
}); | |
<div class="box"> |
This file contains hidden or 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('<span class="designation-comma">,</span>').insertBefore('.team-member .node__title .field--name-title .field--name-designation') | |
.designation-comma { | |
margin-left: -5px; | |
} | |
.team-member .field--name-title .field--name-designation { | |
margin-left: -1px; | |
} |
This file contains hidden or 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
//fix default team page images and format | |
jQuery('.not-front .team-member--imgside img').attr('src',function(index,attr){ | |
return attr.replace('/styles/portrait_500x600/public',''); | |
}); | |
jQuery('.not-front .team-member--imgside img').attr('srcset',function(index,attr){ | |
return attr.replace('/styles/portrait_500x600/public',''); | |
}); |
NewerOlder