Vote For Your Favorites

Cast your vote for the Ghana International Awards nominees

How to Vote

  • Select the award category you wish to vote for from the dropdown menu
  • Browse through the nominees and their profiles
  • Click on the "Vote" button next to your chosen nominee
  • Confirm your vote by following the verification process

Note: You can vote once per category. Voting closes on August 15, 2025 at 11:59 PM GMT.

Ghana International Awards - Official Voting Platform

Loading voting platform...

Join Us at the Awards Ceremony

Witness the celebration of excellence and innovation at the Ghana International Awards ceremony.

document.addEventListener('DOMContentLoaded', function() { const votingFrame = document.getElementById('voting-frame'); const loadingOverlay = document.getElementById('loading-overlay'); const refreshButton = document.getElementById('refresh-frame'); // Hide loading overlay when iframe is loaded votingFrame.addEventListener('load', function() { // Add a slight delay to ensure the iframe content is fully loaded setTimeout(function() { loadingOverlay.style.display = 'none'; }, 1500); }); // Refresh button functionality refreshButton.addEventListener('click', function() { loadingOverlay.style.display = 'flex'; votingFrame.src = votingFrame.src; }); // Handle iframe load errors votingFrame.addEventListener('error', function() { loadingOverlay.innerHTML = `

Unable to Load Voting Platform

There was an issue connecting to the voting platform. Please try again later.

`; document.getElementById('retry-button').addEventListener('click', function() { location.reload(); }); }); // Add custom styling to the iframe content (note: this may not work due to cross-origin restrictions) votingFrame.addEventListener('load', function() { try { const frameDocument = votingFrame.contentDocument || votingFrame.contentWindow.document; // Create a style element const style = frameDocument.createElement('style'); style.textContent = ` body { font-family: 'Montserrat', sans-serif !important; } .header, .footer { display: none !important; } `; // Append the style to the iframe's head frameDocument.head.appendChild(style); } catch (e) { console.log('Cannot access iframe content due to cross-origin restrictions'); } }); });