Many thanks weatherdoc. I only added the 2nd part, my header code looks like this now for altdashboard6:
<div id="page"><!-- page wrapper -->
<img src="https://vinesweather.com/logo/vlogo.jpg" width="100%" border="0" alt="The Vines Weather"/>
<!-- header -->
<div class="headerTemp">
<span class="doNotPrint">
<span class="ajax" id="ajaxbigtemp"><?php print isset($tempnodp)?"$tempnodp$tuom":" "; ?>
</span>
</span>
</div>
<div class="subHeader">
<?php echo $SITE['location']; ?>
<?php if($SITE['allowLanguageSelect']) { // insert code for language select ?>
<br />
<!-- begin language select -->
<?php echo print_language_selects(); ?>
<!-- end language select -->
<?php } // end code for language select ?>
</div>
<div class="subHeaderRight">
<?php
if (isset($showGizmo) and $showGizmo) {
include_once("ajax-gizmo.php");
} else {
print " <br/><br/>\n"; // needed as placeholder if no gizmo
}
?>
</div><!-- end subHeaderRight -->
</div>
<!-- end of header -->
For those who may ask the same question.
Thanks again!