Hi, I believe there are a few *<div* missing from the header.php in the latest release. This code below works, but I added the *<div* before the *class=”cr-secondary-menu”* in each.
<?php $pagewidth = get_theme_mod( ‘page_width’, ‘default’ );
switch ($pagewidth) {
case “default” :
echo ‘<div id=”cir-wrapper” style=”border-color:’;
echo get_theme_mod( ‘topborder’, ‘#000000’ ) . ‘;”‘;
if ( has_nav_menu( ‘secondary’ ) ) echo
‘<div class=”cr-secondary-menu” ‘. ‘>’;
break;
case “boxedmedium” :
echo ‘<div id=”cir-wrapper-boxed-medium” style=”border-color:’;
echo get_theme_mod( ‘topborder’, ‘#000000’ ) . ‘;”>’;
if ( has_nav_menu( ‘secondary’ ) ) echo
‘<div class=”cr-secondary-menu” ‘. ‘>’;
break;
case “boxedsmall” :
echo ‘<div id=”cir-wrapper-boxed-small”
style=”border-color:’;
echo get_theme_mod( ‘topborder’, ‘#000000’ ) . ‘;”>’;
if ( has_nav_menu( ‘secondary’ ) ) echo
‘<div class=”cr-secondary-menu” ‘. ‘>’;
break;
}
?>