Thanks! I already turned off all of the sidebars ... forgot to mention that in the original post.
However, when I compared the example's HTML to mine (what was left after turning off all of the sidebars), the result is very different.
The model website removed some IDs. Not sure how to do that without touching core files.
For example, the model site's HTML looks like this:
Code:
<body id="indexHomeBody">
<div id="mainWrapper">
<!--bof-header logo and navigation display-->
<div id="headerWrapper">
<div id="headerContent">
<!-- <div id="nameWrapper"></div> -->
<!-- <div id="taglineWrapper"></div> -->
</div><!-- headerContent -->
<div id="headerpic">
<div id="slogan">
and my default HTML looks like this:
Code:
<body id="indexHomeBody">
<div id="mainWrapper">
<!--bof-header logo and navigation display-->
<div id="headerWrapper">
<!--bof-navigation display-->
<div id="navMainWrapper">
<div id="navMain">
<ul class="back">
<li><a href="http://sitename.com/zenner/">Home</a></li>
</ul>
</div>
<div id="navMainSearch"></div>
<br class="clearBoth" />
</div>
<!--eof-navigation display-->
<!--bof-branding display-->
<div id="logoWrapper">
So, how does one modify the HTML? Is it by modifying the associated PHP files for the template (i.e. ? /templates/tpl_index_default.php)?
Thanks.