<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<link rel="preload" as="image" href="https://www.dumprunz.com/wp-content/uploads/2021/07/DR_with_Logo_1-980x414.jpg" imagesrcset="https://www.dumprunz.com/wp-content/uploads/2021/07/DR_with_Logo_1-980x414.jpg 980w" imagesizes="100vw">
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<?php elegant_description(); ?>
<?php elegant_keywords(); ?>
<?php elegant_canonical(); ?>
<?php do_action( 'et_head_meta' ); ?>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php $template_directory_uri = get_template_directory_uri(); ?>
<!--[if lt IE 9]>
<script src="<?php echo esc_url( $template_directory_uri . '/js/html5.js"' ); ?>" type="text/javascript"></script>
<![endif]-->
<script type="text/javascript">
document.documentElement.className = 'js';
</script>
<link rel="icon" href="https://www.dumprunz.com/favicon.ico?v=2" />
<link rel="apple-touch-icon" sizes="144x144" href="https://www.dumprunz.com/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.dumprunz.com/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.dumprunz.com/favicon-16x16.png">
<link rel="manifest" href="https://www.dumprunz.com/site.webmanifest">
<link rel="mask-icon" href="https://www.dumprunz.com/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://www.dumprunz.com/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://www.dumprunz.com/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<?php wp_head(); ?>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
</head>
<body <?php body_class(); ?>>
<div id="page-container">
<?php
if ( is_page_template( 'page-template-blank.php' ) ) {
return;
}
$et_secondary_nav_items = et_divi_get_top_nav_items();
$et_phone_number = $et_secondary_nav_items->phone_number;
$et_email = $et_secondary_nav_items->email;
$et_contact_info_defined = $et_secondary_nav_items->contact_info_defined;
$show_header_social_icons = $et_secondary_nav_items->show_header_social_icons;
$et_secondary_nav = $et_secondary_nav_items->secondary_nav;
$et_top_info_defined = $et_secondary_nav_items->top_info_defined;
$et_slide_header = 'slide' === et_get_option( 'header_style', 'left' ) || 'fullscreen' === et_get_option( 'header_style', 'left' ) ? true : false;
?>
<?php if ( $et_top_info_defined && ! $et_slide_header || is_customize_preview() ) : ?>
<div id="top-header"<?php echo $et_top_info_defined ? '' : 'style="display: none;"'; ?>>
<div class="container clearfix">
<?php if ( $et_contact_info_defined ) : ?>
<div id="et-info">
<?php if ( '' !== ( $et_phone_number = et_get_option( 'phone_number' ) ) ) : ?>
<span id="et-info-phone"><?php echo et_sanitize_html_input_text( $et_phone_number ); ?></span>
<?php endif; ?>
<?php if ( '' !== ( $et_email = et_get_option( 'header_email' ) ) ) : ?>
<a href="<?php echo esc_attr( 'mailto:' . $et_email ); ?>"><span id="et-info-email"><?php echo esc_html( $et_email ); ?></span></a>
<?php endif; ?>
<?php
if ( true === $show_header_social_icons ) {
get_template_part( 'includes/social_icons', 'header' );
} ?>
</div> <!-- #et-info -->
<?php endif; // true === $et_contact_info_defined ?>
<div id="et-secondary-menu">
<?php
if ( ! $et_contact_info_defined && true === $show_header_social_icons ) {
get_template_part( 'includes/social_icons', 'header' );
} else if ( $et_contact_info_defined && true === $show_header_social_icons ) {
ob_start();
get_template_part( 'includes/social_icons', 'header' );
$duplicate_social_icons = ob_get_contents();
ob_end_clean();
printf(
'<div class="et_duplicate_social_icons">
%1$s
</div>',
$duplicate_social_icons
);
}
if ( '' !== $et_secondary_nav ) {
echo $et_secondary_nav;
}
et_show_cart_total();
?>
</div> <!-- #et-secondary-menu -->
</div> <!-- .container -->
</div> <!-- #top-header -->
<?php endif; // true ==== $et_top_info_defined ?>
<?php if ( $et_slide_header || is_customize_preview() ) : ?>
<div class="et_slide_in_menu_container">
<?php if ( 'fullscreen' === et_get_option( 'header_style', 'left' ) || is_customize_preview() ) { ?>
<span class="mobile_menu_bar et_toggle_fullscreen_menu"></span>
<?php } ?>
<?php
if ( $et_contact_info_defined || true === $show_header_social_icons || false !== et_get_option( 'show_search_icon', true ) || class_exists( 'woocommerce' ) || is_customize_preview() ) { ?>
<div class="et_slide_menu_top">
<?php if ( 'fullscreen' === et_get_option( 'header_style', 'left' ) ) { ?>
<div class="et_pb_top_menu_inner">
<?php } ?>
<?php }
if ( true === $show_header_social_icons ) {
get_template_part( 'includes/social_icons', 'header' );
}
et_show_cart_total();
?>
<?php if ( false !== et_get_option( 'show_search_icon', true ) || is_customize_preview() ) : ?>
<?php if ( 'fullscreen' !== et_get_option( 'header_style', 'left' ) ) { ?>
<div class="clear"></div>
<?php } ?>
<form role="search" method="get" class="et-search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php
printf( '<input type="search" class="et-search-field" placeholder="%1$s" placeholder="%2$s" name="s" title="%3$s" />',
esc_attr__( 'Search …', 'Divi' ),
get_search_query(),
esc_attr__( 'Search for:', 'Divi' )
);
?>
<button type="submit" id="searchsubmit_header"></button>
</form>
<?php endif; // true === et_get_option( 'show_search_icon', false ) ?>
<?php if ( $et_contact_info_defined ) : ?>
<div id="et-info">
<?php if ( '' !== ( $et_phone_number = et_get_option( 'phone_number' ) ) ) : ?>
<span id="et-info-phone"><?php echo et_sanitize_html_input_text( $et_phone_number ); ?></span>
<?php endif; ?>
<?php if ( '' !== ( $et_email = et_get_option( 'header_email' ) ) ) : ?>
<a href="<?php echo esc_attr( 'mailto:' . $et_email ); ?>"><span id="et-info-email"><?php echo esc_html( $et_email ); ?></span></a>
<?php endif; ?>
</div> <!-- #et-info -->
<?php endif; // true === $et_contact_info_defined ?>
<?php if ( $et_contact_info_defined || true === $show_header_social_icons || false !== et_get_option( 'show_search_icon', true ) || class_exists( 'woocommerce' ) || is_customize_preview() ) { ?>
<?php if ( 'fullscreen' === et_get_option( 'header_style', 'left' ) ) { ?>
</div> <!-- .et_pb_top_menu_inner -->
<?php } ?>
</div> <!-- .et_slide_menu_top -->
<?php } ?>
<div class="et_pb_fullscreen_nav_container">
<?php
$slide_nav = '';
$slide_menu_class = 'et_mobile_menu';
$slide_nav = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'fallback_cb' => '', 'echo' => false, 'items_wrap' => '%3$s' ) );
$slide_nav .= wp_nav_menu( array( 'theme_location' => 'secondary-menu', 'container' => '', 'fallback_cb' => '', 'echo' => false, 'items_wrap' => '%3$s' ) );
?>
<ul id="mobile_menu_slide" class="<?php echo esc_attr( $slide_menu_class ); ?>">
<?php
if ( '' == $slide_nav ) :
?>
<?php if ( 'on' == et_get_option( 'divi_home_link' ) ) { ?>
<li <?php if ( is_home() ) echo( 'class="current_page_item"' ); ?>><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e( 'Home', 'Divi' ); ?></a></li>
<?php }; ?>
<?php show_page_menu( $slide_menu_class, false, false ); ?>
<?php show_categories_menu( $slide_menu_class, false ); ?>
<?php
else :
echo( $slide_nav );
endif;
?>
</ul>
</div>
</div>
<?php endif; // true ==== $et_slide_header ?>
<header id="main-header" data-height-onload="<?php echo esc_attr( et_get_option( 'menu_height', '66' ) ); ?>">
<div class="container clearfix et_menu_container">
<?php
$logo = ( $user_logo = et_get_option( 'divi_logo' ) ) && '' != $user_logo
? $user_logo
: $template_directory_uri . '/images/logo.png';
?>
<div class="logo_container">
<span class="logo_helper"></span>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img src="https://www.dumprunz.com/wp-content/uploads/2021/09/Dump-Runz.png" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" id="logo" data-height-percentage="<?php echo esc_attr( et_get_option( 'logo_height', '54' ) ); ?>" />
<a href class="logo-number" href="tel:2503079449"><img src="https://www.dumprunz.com/wp-content/uploads/2021/09/Number.png"/></a>
</a>
</div>
<div id="et-top-navigation" data-height="<?php echo esc_attr( et_get_option( 'menu_height', '66' ) ); ?>" data-fixed-height="<?php echo esc_attr( et_get_option( 'minimized_menu_height', '40' ) ); ?>">
<?php if ( ! $et_slide_header || is_customize_preview() ) : ?>
<nav id="top-menu-nav">
<?php
$menuClass = 'nav';
if ( 'on' == et_get_option( 'divi_disable_toptier' ) ) $menuClass .= ' et_disable_top_tier';
$primaryNav = '';
$primaryNav = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'fallback_cb' => '', 'menu_class' => $menuClass, 'menu_id' => 'top-menu', 'echo' => false ) );
if ( '' == $primaryNav ) :
?>
<ul id="top-menu" class="<?php echo esc_attr( $menuClass ); ?>">
<?php if ( 'on' == et_get_option( 'divi_home_link' ) ) { ?>
<li <?php if ( is_home() ) echo( 'class="current_page_item"' ); ?>><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e( 'Home', 'Divi' ); ?></a></li>
<?php }; ?>
<?php show_page_menu( $menuClass, false, false ); ?>
<?php show_categories_menu( $menuClass, false ); ?>
</ul>
<?php
else :
echo( $primaryNav );
endif;
?>
</nav>
<?php endif; ?>
<?php
if ( ! $et_top_info_defined && ( ! $et_slide_header || is_customize_preview() ) ) {
et_show_cart_total( array(
'no_text' => true,
) );
}
?>
<?php if ( $et_slide_header || is_customize_preview() ) : ?>
<span class="mobile_menu_bar et_pb_header_toggle et_toggle_<?php echo esc_attr( et_get_option( 'header_style', 'left' ) ); ?>_menu"></span>
<?php endif; ?>
<?php if ( ( false !== et_get_option( 'show_search_icon', true ) && ! $et_slide_header ) || is_customize_preview() ) : ?>
<div id="et_top_search">
<span id="et_search_icon"></span>
</div>
<?php endif; // true === et_get_option( 'show_search_icon', false ) ?>
<?php do_action( 'et_header_top' ); ?>
</div> <!-- #et-top-navigation -->
</div> <!-- .container -->
<div class="et_search_outer">
<div class="container et_search_form_container">
<form role="search" method="get" class="et-search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php
printf( '<input type="search" class="et-search-field" placeholder="%1$s" value="%2$s" name="s" title="%3$s" />',
esc_attr__( 'Search …', 'Divi' ),
get_search_query(),
esc_attr__( 'Search for:', 'Divi' )
);
?>
</form>
<span class="et_close_search_field"></span>
</div>
</div>
</header> <!-- #main-header -->
<div id="et-main-area">
Rent a Dump Runz Bin or
Get Your Junk Removed Online Now!
Dump Runz is Your Local Bin Rental & Junk Removal Company!
Rent a Dump Runz Dumpster Bin
Get Started
Save time, money, and hassle – get prices, book, and pay for your Dump Runz bin rental without having to pick up the phone.
Are you looking for Junk Removal?
Learn more
Dump Runz has the right-sized truck and experienced team to remove your junk for you. Book online – save time and save money.
Do You Need A Dump Run in the North Okanagan?
North Okanagan’s #1 Dump Runz Bin Rental and Junk Removal Company!
With Dump Runz you’ll get fast, courteous service at a great price!
Not only that, but we don’t spit, scratch ourselves, or leer at your legs…how excellent is that?
We even recycle and donate whatever we can. Plus, we’ll take pretty much everything except large rabid wolves and vicious fanged parakeets.
Our available truck sizes include:
Questions about sizes? Check out our Dump Runz Sizing Guide.
Our available bin sizes include:
Questions about sizes? Check out our Dump Runz Sizing Guide.
Contractor’s Service
If you’re a contractor, roofer, or anyone who uses Dump Runz often, you’ll fall in love with our Dump Runz Contractor Service. We’re small enough to be nimble but big enough to be there on time every time. When you call, or at least every time you call during reasonable hours, you’ll talk to a real human being! Not only that, but the person you talk to on the phone will be an experienced problem solver who has worked on all our trucks!
Dump Runz Sizing Chart: (by project)
Need help determining what size is right for your project?
What can I put in a Dump Runz Dumpster Bin?
Pretty much anything that’s not living can go in a Dump Runz bin, but the trick to saving money is in how well it’s packed. You see, the Lords of the Dump charge different rates for different things. For example, there’s a different rate for each of wood, metal, concrete (crushables), drywall, shingles…and, well you get the picture.
The second most expensive category is drywall and the least expensive is concrete (with no rebar) or metal (yes, you actually pay to leave metal there!). But mix them all together and you get the dreaded C&D (construction and demolition) category at a whopping $255 per tonne (as of 2021). Of course, if you have all wood or all concrete, you’ll be charged at the wood or concrete rate, so it doesn’t matter. But whatever you do, don’t make the mistake of thinking almost all wood is the same as all wood though, because you may find that the Lords of the Dump rate it as C&D and that would suck.
Sometimes cost is no issue, and sometimes there’s not much we can do about it, but if you can save money in tipping fees, we’ll help you save it. Our driver will explain how to load the bins in a way that saves you money when the bin is dropped off.
By the way, if you hire a truck and crew, we do the loading and you don’t have to!
Check Out What Our Customers Are Saying
Do you ever get the feeling that you’re throwing away something that has a lot of value, and wish you could have found a home for it? Like that stuff you tried to sell in a garage sale and it wouldn’t sell but you have to get rid of it? Check out what we do with it!
Furniture – we donate what we can to charities like the following:
But sometimes furniture is old and scratched or even out of date, and those organizations won’t take it. When that happens, instead of taking the easy way out and throwing it out at the dump like everyone else does, we donate it to a local furniture refinisher, Blessed Distressed https://www.facebook.com/blesseddistress/community/ who transforms it into a work of art. We love seeing the results!
And this piece we’re especially proud of. It was an old piece of furniture from the very early 20th century or late 19th century, and the reason there’s no ‘before’ picture is that the piece literally fell apart in our hands as we were loading it onto the truck…I guess a century is hard on glue, and since there were few nails, the joints let go.. Blessed Distress took the bundle of sticks and glass and turned it into this!
Of course the usual recycling like plastics, glass, or electronics, we take to
– Venture training http://vdacl.ca/, a charity that helps the intellectually challenged. They in turn sell the recycling in order to continue doing the excellent work they do.
We hate throwing things out, as ironic as that sounds coming from a company called Dump Runz, and we make every effort to recycle it and reuse things when you’re done with them!
Please refer to our online pricing guide to see the pricing for your specific area.