Experience ANU
Source: https://study.anu.edu.au/events Parent: https://study.anu.edu.au/apply/overseas-student-health-cover-oshc
Search events
.divider { display: flex; } .divider::before, .divider::after { content: ""; flex: 1; } .line { align-items: center; margin: 1em -1em; } .line::before, .line::after { height: 2px; margin: 0 1em; background: #be830e; }
13 January 2024 - 23 December 2026
ANU Future Student Campus Tour
On-campus: Kambri
13 March 2026
Career Practitioner Session: ANU Direct Entry Application Advice (Including Tuckwell Scholarship)
16 March 2026
Career Practitioner Session: ANU Direct Entry Application Advice (Including Tuckwell Scholarship)
17 March 2026
Tuckwell Scholarship information session
19 March 2026
Why apply through the ANU Direct Entry Scheme
23 March 2026
Victoria Students: Your ANU Direct Entry Guide
28 March 2026
ANU Open Day
On-campus: Canberra ACT 2601
.position-top-auto { top: auto !important; } .position-relative { position: relative !important; } /*make banner 600px*/
acbb-campaign-block-banner {
height: 600px; }
ace-feature #ace-feature-slider {
height: 550px; } .feature-img { aspect-ratio: 16/9; object-fit: cover; } .banner-overlay { background: linear-gradient(270deg, rgba(0, 0, 0, 0) 15.65%, rgba(0, 0, 0, 0.64) 99.33%); } .overlap { overflow: hidden; } .overlap-child { top: 0; } .br-custom { border-radius: 0 20px 20px 20px; } /*Highlight events*/ @media only screen and (min-width: 992px) { .ace-feature-tablet { display: none; } } @media only screen and (max-width: 991px) { .ace-feature-tablet { display: flex; }
ace-feature #ace-feature-slider {
height: auto; }
ace-feature #ace-feature-slider .feature-img {
height: auto !important; } .ace-feature-desktop { display: none; } }
ace-feature #ace-feature-slider .feature-img {
height: 70%; } tr td { padding-top: 10px !important; } tr td:first-child { width: 10%; padding-left: 0px; } img.icon { max-width: 24px; } .anu-btn-thin-gold a { padding: 10px 20px; gap: 10px; border-color: #be830e; border-width: 1px; /* border-width: 3px; */ border-style: solid; border-radius: 5px; color: black; } .anu-btn-thin-gold { padding-top: 30px; float: right; } /*event sections*/ /*add ratio-16-9 to thumbnails*/
ace-posts .overlap img {
aspect-ratio: 2; object-fit: cover; } /*change date block paddings*/ .bg-black.p-2.dateblock.b-0.overlap-child { padding: 5px 10px 5px 10px !important; } /*change card description padding*/ .pt-2.pb-2.pl-3.pr-3 { padding-top: 30px !important; padding-bottom: 30px !important; padding-right: 20px !important; padding-left: 20px !important; }
ace-posts h4 {
font-weight: 700; padding-bottom: 10px } /*add icon before time and location*/ .time::before { content: url("https://imagedepot.anu.edu.au/isfs/campaign/Sui001-2-gold-053.svg"); display: inline-block; height: 16px; width: 16px; vertical-align: middle; margin-right: 10px; } .time { color: #666; } .event-location::before { content: url("https://imagedepot.anu.edu.au/isfs/campaign/Sui001-2-gold-021.svg"); display: inline-block; height: 16px; width: 16px; vertical-align: middle; margin-right: 10px; } .event-location { padding-top: 10px; }
ace-posts .h4 {
min-height:2.4em;}
ace-posts .time {
display:none !important;} /* for filters */ fieldset { border: none !important; }
document.addEventListener('DOMContentLoaded', function() { // Function to handle link clicks with event delegation function handleLinkClick(event) { console.log('Link clicked'); var target = event.target; // Traverse up to find if any parent is an 'A' tag if the target itself isn't while (target && target !== this && target.tagName !== 'A') { target = target.parentNode; } if (target && target.tagName === 'A' && target.href.match(/\/taxonomy\/term\/(\d+)$/)) { event.preventDefault(); var termId = target.href.match(/\/taxonomy\/term\/(\d+)$/)[1]; var checkboxSelector = 'input[data-drupal-selector="edit-field-ce-event-type-' + termId + '"]'; var checkbox = document.querySelector(checkboxSelector); if (checkbox && !checkbox.checked) { checkbox.click(); } } } // Select all containers and setup event listeners var containers = document.querySelectorAll('div.event-type-select'); containers.forEach(function(container) { console.log('Setting up link click listeners for container'); container.addEventListener('click', handleLinkClick); }); });