New Moodle Theme - Junction

Re: New Moodle Theme - Junction

by Mary Evans -
Number of replies: 0
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers
Hi Jess,

If you look in header.html you should find the following code (see below)...just add a URL or (as in the highlighted example I've added) your boss's email address. Hope this is of some help? Mary

<?php print_container_start(true, '', 'header-home'); ?>
<div id="navwrapper">
<ul class="lavaLampWithImage" id="1">
<li class="current"><a href="<?php echo $CFG->wwwroot.'/' ?>">Home</a></li>
<li><a href="<?php echo $CFG->wwwroot.'/course' ?>">Courses</a></li>
<li><a href="mailto:ceo@work.com">Contact</a></li>
<li><a href="<?php echo $CFG->wwwroot.'/login' ?>">Login</a></li>
<h1 class="headermain"><?php echo $heading ?></h1>
</ul>
</div>
<?php print_container_end(); ?>


<?php } else if ($heading) { // This is what gets printed on any other page with a heading
?>
<?php print_container_start(true, '', 'header'); ?>
<div id="navwrapper">
<ul class="lavaLampWithImage" id="1">
<li class="current"><a href="<?php echo $CFG->wwwroot.'/' ?>">Home</a></li>
<li><a href="<?php echo $CFG->wwwroot.'/course' ?>">Courses</a></li>
<li><a href="mailto:ceo@work.com">Contact</a></li>
<li><a href="<?php echo $CFG->wwwroot.'/login' ?>">Login</a></li>
<h1 class="headermain"><?php echo $heading ?></h1>
</ul>
</div>
<?php print_container_end(); ?>