Hi again,
I tried the span modifications. Nothing happened – I’m hitting F5 by the way. Below is what I have in my child theme – I wasn’t sure how much I had to paste so I did…most of it.
What am I doing wrong?
/* Add your theme overrides from style.css below */
<?php $bloglayout = get_theme_mod( 'blog_layout', 'leftcolumn' );
switch ($bloglayout) {
case "leftcolumn" :
echo '';
get_template_part( 'partials/mobile-logo' );
get_template_part( 'partials/social-bar' );
get_template_part( 'partials/horizontal-menu' );
get_template_part( 'sidebar', 'header' );
get_template_part( 'sidebar', 'cta' );
echo '
';
get_template_part( 'sidebar', 'inset-top' );
......