var IZ = {"with_woocommerce":"0","exchange_thumbnails":"1","woo_categories":"0","enable_mobile":"","options":{"lensShape":"square","lensSize":200,"lensBorderSize":1,"lensBorderColour":"#ffffff","borderRadius":0,"cursor":"zoom-in","zoomWindowWidth":400,"zoomWindowHeight":360,"zoomWindowOffsetx":10,"borderSize":1,"borderColour":"#888888","zoomWindowShadow":4,"lensFadeIn":0.5,"lensFadeOut":0.5,"zoomWindowFadeIn":0.5,"zoomWindowFadeOut":0.5,"easingAmount":12,"tint":"true","tintColour":"#ffffff","tintOpacity":0.1},"woo_slider":"0"};
White marbles are more elegant than other marble variants and are always associated with luxury, value, solemnity and grace. Baasar Stone is a leading natural stone supplier, offering high-quality white marbles that are sure to deliver an impressive finish to residential and commercial space. Our white marble slabs and benchtops boast unique design patterns that reinforce the trend and enhance the interior with their refined hues. They also exude distinct veins and strokes that make these stones the cynosure of all eyes. Being a top choice for interior designers, builders and homeowners across Melbourne, our white marble stones are appropriate for kitchen countertops, bedroom ceilings, floorings, hallway walls, furniture pieces, etc.
We have different types of white marbles, including:
Calacatta Marbles
Carrara Marbles
Grigio Nuvolato Marbles
Statuario Marbles
Bianco Marbles
New York Marbles
Calacatta White Marbles:
This is a unique Italian marble with the combination of white and gold veins that look eye-catching. Due to its unique colour and pattern, this marble is very much appreciated by developers and interior designers. Available in both polished and honed finishes, this natural stone is ideal for being used as kitchen countertops, kitchen islands, shower surrounds, backsplashes and flooring.
Carrara White Marbles:
This is one of the most demanded natural stones across the globe. With its pristine white background and grey or soft black veins, this sophisticated marble is ideal for low traffic areas such as master bedrooms and hallways. Boasting stunning and unique design, white carrara marble is also a popular choice for flooring and interior decoration.
Grigio Nuvolato Marbles:
Grigio Nuvolato is a light grey-coloured marble that boasts the look of the clouds. Featuring very thin veins in a parallel pattern, this stone is ideal for making refined floors, countertops, sinks, vanities and many other interior and exterior design projects.
Statuario Marbles:
This is a more exclusive marble stone with a bold pattern and distinct grey & gold veining throughout. It has a very graceful appearance, making it an optimal choice for most architects and designers across the globe. Statuario marble is an ideal pick for kitchen countertops, bathroom vanities, backsplashes, flooring and other interior applications.
Bianco Marbles:
As a highly-valued marble since ancient times, Bianco marble is well-known for its slight bluish and greyish shades with very fine grains. Whether used in honed or polished form, Bianco stones make a perfect fit for bathroom, bathtub, staircase and hearth. In fact, it can transform any space into something luxurious with its lavish look.
New York Marbles:
This is a prominent white marble with black, lightening-like veins running throughout. Though commonly used for bathroom vanities, bathtubs and kitchen benchtops, they also make a perfect fit for any commercial project.
Get Premium & Exquisite White Marbles from Baasar Stones
At Baasar Stones, our extensive collection of marbles caters to diverse preferences and requirements, ensuring we have the perfect choice for your unique space and lifestyle. Our white marble slabs for benchtops are not just about functionality; they embody elegance and style, enhancing the value and aesthetic appeal of your home.
As a prominent supplier of natural stones in Melbourne, we source our marble from one of the world’s best quarries to ensure each piece you get meets the highest quality standards in the market. Our white marble collection is nothing short of spectacular, providing you with reliability and excellence for all your marble requirements.
If you’re considering buying marble for residential or commercial purposes and want to buy white marble slabs in custom quantities, reach out to us at Baasar Stones for a quote on our collection of premium white marble slabs for benchtops. Our team is eager to assist you in selecting the perfect stone slab, so you get the best returns on your purchase for years to come.
document.addEventListener("DOMContentLoaded", function() {// Function to check if localStorage is available
function localStorageAvailable() {
try {
var test = "__localStorage_test__";
localStorage.setItem(test, test);
localStorage.removeItem(test);
return true;
} catch (e) {
return false;
}
}var exactTimeGlobal = null;
if (localStorageAvailable()) {
// Check if exactTimeGlobal is already stored in localStorage
exactTimeGlobal = localStorage.getItem('exactTimeGlobal');
}// Common attributes and styles for hidden fields
var commonAttributes = {
'aria-hidden': "true", // Accessibility
tabindex: "-1", // Accessibility
autocomplete: "off", // Prevent browser autofill
class: "maspik-field"
};var hiddenFieldStyles = {
position: "absolute",
left: "-99999px"
};// Function to create a hidden field
function createHiddenField(attributes, styles) {
var field = document.createElement("input");
for (var attr in attributes) {
field.setAttribute(attr, attributes[attr]);
}
for (var style in styles) {
field.style[style] = styles[style];
}
return field;
}// Function to add hidden fields to the form if they do not already exist
function addHiddenFields(formSelector, fieldClass) {
document.querySelectorAll(formSelector).forEach(function(form) {
if (!form.querySelector('.maspik-field')) {
if ("1") {
var honeypot = createHiddenField({
type: "text",
name: "full-name-maspik-hp",
id: "full-name-maspik-hp",
class: fieldClass + " maspik-field",
placeholder: "Leave this field empty"
}, hiddenFieldStyles);
form.appendChild(honeypot);
}if (null) {
var currentYearField = createHiddenField({
type: "text",
name: "Maspik-currentYear",
id: "Maspik-currentYear",
class: fieldClass + " maspik-field"
}, hiddenFieldStyles);
form.appendChild(currentYearField);
}if (null) {
var exactTimeField = createHiddenField({
type: "text",
name: "Maspik-exactTime",
id: "Maspik-exactTime",
class: fieldClass + " maspik-field"
}, hiddenFieldStyles);
form.appendChild(exactTimeField);
}
}
});
}// Add hidden fields to various form types
//Not suported ninja form
addHiddenFields('form.brxe-brf-pro-forms', 'brxe-brf-pro-forms-field-text');
//formidable
addHiddenFields('form.frm-show-form', 'frm_form_field');
addHiddenFields('form.elementor-form', 'elementor-field-textual');// Function to set the current year and exact time in the appropriate fields
function setDateFields() {
var currentYear = new Date().getFullYear();if (!exactTimeGlobal) {
exactTimeGlobal = Math.floor(Date.now() / 1000);
if (localStorageAvailable()) {
localStorage.setItem('exactTimeGlobal', exactTimeGlobal);
}
}document.querySelectorAll('input[name="Maspik-currentYear"]').forEach(function(input) {
input.value = currentYear;
});document.querySelectorAll('input[name="Maspik-exactTime"]').forEach(function(input) {
input.value = exactTimeGlobal;
});
}// Initial call to set date fields
setDateFields();// Use MutationObserver to detect AJAX form reloads and reset hidden fields
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.type === 'childList' && mutation.addedNodes.length) {
setTimeout(function() {
setDateFields();
}, 500);
}
});
});observer.observe(document.body, { childList: true, subtree: true });
});
var sbiajaxurl = "https://baasarstone.com.au/wp-admin/admin-ajax.php";
var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"};
var sticky_anything_engage = {"element":"#header","topspace":"0","minscreenwidth":"0","maxscreenwidth":"999999","zindex":"1","legacymode":"","dynamicmode":"","debugmode":"","pushup":"","adminbar":"1"};
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.24.6","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/baasarstone.com.au\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/baasarstone.com.au\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/baasarstone.com.au\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"936e678e18"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":4496,"title":"White%20Marbles%20Melbourne%20%7C%20White%20Marble%20Benchtops%20%7C%20Baasar%20Stones","excerpt":"","featuredImage":false}};