0
Welcome Guest! Login
0 items Join Now

Haiku Ramblings

    • o's Avatar
    • o
    • Rocketeer
    • Posts: 66
    • Thanks: 0

    Haiku Ramblings

    Posted 16 years 1 month ago
    • Hi,

      I'm using Haiku Ramblings for a friend's quick site - is it possible to remove the entire right module (from the body all the way up through the header)- I don't have any material for it and it looks really bad just sitting there...

      Thanks!
  • Re: Haiku Ramblings

    Posted 16 years 1 month ago
    • 1. Open index.php

      2. Find
      <?php mosLoadModules( 'right', -2); ?>

      3. Change to
      <?php if (mosCountModules('right')) : ?>
      &nbsp; <?php mosLoadModules( 'right', -2); ?>
      <?php endif; ?>
    • James Spencer / Developer & Support / Hull, UK
    • o's Avatar
    • o
    • Rocketeer
    • Posts: 66
    • Thanks: 0

    Re: Haiku Ramblings

    Posted 16 years 1 month ago
    • Hi James, thanks for getting back with me so quickly. I opened index.php in the backend Joomla editor and changed the code as per above, but it didn't change anything on the website. So I opened the index.php in Dreamweaver and did it that way - still no change.

      Any idea? thanks for your help!
  • Re: Haiku Ramblings

    Posted 16 years 1 month ago
    • Do you have a link?
    • James Spencer / Developer & Support / Hull, UK
    • o's Avatar
    • o
    • Rocketeer
    • Posts: 66
    • Thanks: 0

    Re: Haiku Ramblings

    Posted 16 years 1 month ago
  • Re: Haiku Ramblings

    Posted 16 years 1 month ago
    • In index.php, change
      <div id="navigation">
           <div class="padding">
                <?php mosLoadModules( 'left', -2); ?>
                <?php mosLoadModules( 'user4', -2); ?>
                <?php mosLoadModules( 'user2', -2); ?>
                <?php mosLoadModules( 'right', -2); ?>
           </div>
      </div>

      To
      <?php if (mosCountModules('left') or (mosCountModules('user4') or (mosCountModules('user2') or (mosCountModules('right')))) : ?>
      <div id="navigation">
           <div class="padding">
                <?php mosLoadModules( 'left', -2); ?>
                <?php mosLoadModules( 'user4', -2); ?>
                <?php mosLoadModules( 'user2', -2); ?>
                <?php mosLoadModules( 'right', -2); ?>
           </div>
      </div>
      <?php endif; ?>
    • James Spencer / Developer & Support / Hull, UK

Time to create page: 0.053 seconds