Opens in a new tab
function updateHeaderHeight() {
        // Get the height of #brx-header
        const headerHeight = document.querySelector('#brx-header').offsetHeight;
          
        // Store the height in the CSS custom property --header-height
        document.documentElement.style.setProperty('--brxw-header-height', headerHeight + 'px');
    }

    // Execute the function as soon as the document is ready
    document.addEventListener('DOMContentLoaded', function() {
        updateHeaderHeight();  // Initial update of header height when the document is ready

        // Update the header height on window resize and orientation change
        window.addEventListener('resize', updateHeaderHeight);
        window.addEventListener('orientationchange', updateHeaderHeight);
});

Monday, November 20 2023, 10.09am

In Ibiza, the holiday season presents a diverse yet limited range of accommodation options, as reflected in a Booking.com search. Visitors can choose from 57 listings for New Year’s Eve, which include 16 traditional hotels, hostels, or agritourism sites, alongside unique offerings like vans, boats, and luxury villas. Prices vary significantly, from budget rooms at €89 per night to extravagant villas costing up to €15,245 per night. The majority of these accommodations are concentrated in Ibiza town, with a few in Sant Antoni and Santa Eulària. This varied yet sparse availability highlights the challenge for local town halls in attracting a significant number of tourists during the off-peak winter season. For the full article, please visit Diario de Ibiza website here.