Remove menu name from page
Permalink
When on a page, example "home" is clicked, the item "home" on the menu is highlighted. The word "home" also appears on the page below the menu. How do I remove the word "home" on the page without removing it from the menu? See the attached image. The word I would like to remove is circled on the image.
which page exactly and can i get there through the dashboard or do i need to edit through the template files? i'm wondering what file to edit?? sorry i am not the brightest bulb in the coding lamp ;)
OK so I pretty much figured out what you were telling me to do. I have started off with the "right_sidebar" php file and played with the code. Now i have a new problem. After removing side content menu header, my new content headers are slightly off and i can't get them to center. See image attached: here is the code i have customized:
<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php'); ?>
<div id="center">
<div class="sidebar-right fRight">
<?php?>
<div class="sidebar-right-content">
<?php
$as = new Area('Sidebar');
$as->display($c);
?>
<br style="clear: both;" />
</div>
<img src="<?php echo $this->getThemePath()?>/images/sidebar_footer.png" alt="" />
<div class="banner-space">
<?php $a = new Area('Banner-Space-1'); $a->display($c); ?>
</div>
<div class="banner-space">
<?php $a = new Area('Banner-Space-2'); $a->display($c); ?>
</div>
</div>
<div class="container fLeft">
<img src="<?php echo $this->getThemePath()?>/images/content_top.png" alt="" />
<div class="content">
<h1><?php echo $pageTitle?></h1>
<?php
$a = new Area('Main');
$a->display($c);
?>
<br style="clear: both;" />
</div>
<img src="<?php echo $this->getThemePath()?>/images/content_footer.png" alt="" />
</div>
</div>
<?php $this->inc('elements/footer.php'); ?>
<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php'); ?>
<div id="center">
<div class="sidebar-right fRight">
<?php?>
<div class="sidebar-right-content">
<?php
$as = new Area('Sidebar');
$as->display($c);
?>
<br style="clear: both;" />
</div>
<img src="<?php echo $this->getThemePath()?>/images/sidebar_footer.png" alt="" />
<div class="banner-space">
<?php $a = new Area('Banner-Space-1'); $a->display($c); ?>
</div>
<div class="banner-space">
<?php $a = new Area('Banner-Space-2'); $a->display($c); ?>
</div>
</div>
<div class="container fLeft">
<img src="<?php echo $this->getThemePath()?>/images/content_top.png" alt="" />
<div class="content">
<h1><?php echo $pageTitle?></h1>
<?php
$a = new Area('Main');
$a->display($c);
?>
<br style="clear: both;" />
</div>
<img src="<?php echo $this->getThemePath()?>/images/content_footer.png" alt="" />
</div>
</div>
<?php $this->inc('elements/footer.php'); ?>
you just have to go into your theme page and remove the code:
or something similar to that :-)
but this will remove the name in all your pages, if it's in the header.. and else in all pages with the same pagetype....
hopthis helps you :-)