File: /var/www/html/belairhomeloan.com/wp-content/themes/klog/inc/customizer/frontend/custom-layout.php
<?php 
add_action('wp_head', 'dukan_css_layout');
function dukan_css_layout() {
	
	// Get Theme Options from Database
	$theme_options = dukan_theme_options();
		
	// Switch Sidebar to left
	if ( isset($theme_options['layout']) and $theme_options['layout'] == 'left-sidebar' ) :
	
		echo '<style type="text/css">
			@media only screen and (min-width: 60em) {
				#content {
					float: right;
					padding-right: 0;
					padding-left: 2em;
				}
				#sidebar {
					float: left;
				}	
			}
		</style>';
	
	endif;
}