I work with international education for over 10 years and I send many students to Canada, so every time I need to do any visa extension process or something related to the IRCC I contact Global Proficio Inc. because they make all processes look simple and fast, which helps me a lot. I am very satisfied with the service and professionalism of the whole team!
Hi, How Can We Help You?

- Halifax, NS
- Email: info@globalproficio.com
// need to have the same with set from JS on both divs. Otherwise it can push stuff around in HTML
var trp_ls_shortcodes = document.querySelectorAll('.trp_language_switcher_shortcode .trp-language-switcher');
if ( trp_ls_shortcodes.length > 0) {
// get the last language switcher added
var trp_el = trp_ls_shortcodes[trp_ls_shortcodes.length - 1];
var trp_shortcode_language_item = trp_el.querySelector( '.trp-ls-shortcode-language' )
// set width
var trp_ls_shortcode_width = trp_shortcode_language_item.offsetWidth + 16;
trp_shortcode_language_item.style.width = trp_ls_shortcode_width + 'px';
trp_el.querySelector( '.trp-ls-shortcode-current-language' ).style.width = trp_ls_shortcode_width + 'px';
// We're putting this on display: none after we have its width.
trp_shortcode_language_item.style.display = 'none';
}