How to make sidebar float right and site content left

You would do something like this with your CSS. Setting a fixed height and whatnot is only for example purposes: #content { background: brown; width: 75%; height: 500px; float: left; } #sidebar { background: gray; width: 25%; height: 500px; float: left; } <div id=”content”></div> <div id=”sidebar”></div>

How to edit woocommerce sub-category page

You would need to override the template in WooCommerce which displays the category page and add in your own sidebar / html. woocommerce/templates/archive-product.php You can read up on how to do this here: https://docs.woocommerce.com/document/template-structure/ Don’t forget to add theme support in your functions.php file too. function mytheme_add_woocommerce_support() { add_theme_support( ‘woocommerce’ ); } add_action( ‘after_setup_theme’, ‘mytheme_add_woocommerce_support’ … Read more

Force Sidebar on Full Width page

I’m not certain this would work without seeing the theme but you could try something like this… Change… if ( $sidebar_layout === ‘sidebar-left’ && empty( $zerif_change_to_full_width ) ) { zerif_sidebar_trigger(); } To this… if ( $sidebar_layout === ‘sidebar-left’ && empty( $zerif_change_to_full_width ) || is_singular(‘post’)) { zerif_sidebar_trigger(); } This, in theory, would force the left sidebar … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)