diff options
author | Evan O'Connell <oconn.e@gmail.com> | 2013-08-18 18:33:35 -0400 |
---|---|---|
committer | Evan O'Connell <oconn.e@gmail.com> | 2013-08-18 18:33:35 -0400 |
commit | e528c725c6e74e8b1c782df367652a63aff669eb (patch) | |
tree | 5f6b6813dc0a4ebc3075fa6dfb82226cc3de025b /themes/default/index.php | |
parent | 7161864ff404f93d0bb2bf400bbd7d1ead76150d (diff) | |
download | bayonetcms-e528c725c6e74e8b1c782df367652a63aff669eb.tar.gz |
Cleans up the default theme
Diffstat (limited to 'themes/default/index.php')
-rw-r--r-- | themes/default/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/default/index.php b/themes/default/index.php index 3da1144..fc2137b 100644 --- a/themes/default/index.php +++ b/themes/default/index.php @@ -33,12 +33,12 @@ include self::$header; <div class="container"> <!-- banner --> - <div class="banner"><a href="index.php"><img src="<?php echo self::$image_path . '/logo.jpg'; ?>" alt="3rd Infantry Division - ArmAII Unit" /></a></div> + <div class="banner"><h1>Bayonet CMS</h1></div> <!-- navigation --> <div class="nav"><?php require_once self::$root_path . '/navigation.php'; ?></div> <!-- content --> -<table border="0" cellspacing="15px" cellpadding="0" class="main" width="100%"> +<table border="0" cellspacing="0px" cellpadding="0" class="main" width="100%"> <tr> <td class="midcol"> <?php require_once 'modules.php'; ?> @@ -46,7 +46,7 @@ include self::$header; <!-- block area RIGHT --> <?php if(!defined('BLOCK_RIGHT_DISABLE')): ?> - <td class="rightcol"> + <td class="rightcol" style="padding-left: 15px;"> <?php GetBlocks(BLOCK_RIGHT); ?> </td> <?php endif; ?> |