I’m trying to remove the menu from beside the header and have the rotating images spread across the page. The site is here: http://www.bigcreek.org. I want the rotating images to go from one end of the green to the other.
I’ve determined that I can prevent the menu from showing by removing
<?php
switch ($ja_menutype) {
case 1: echo $topnav;
break;
case 2:
include($ja_template_absolute_path."/ja_cssmenu.php");
break;
case 3:
include($ja_template_absolute_path."/ja_transmenu.php");
break;
}
?>
from index.php, but can’t figure out how to make the header graphics take up that space, right now my header module is at 100%.
Please help!