View Single Post
Re: Blocks on the right side ?
Old
  (#2 (permalink))
mikem
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
Re: Blocks on the right side ? - 11-15-2002, 08:30 AM

Quote:
Originally Posted by Nemesco
Ok, when I change my startpage in PHP-Nuke from `News` in `Index` I do not get the right-side blocks anymore.

How do I chanch the way blocks appear on the left and right side?

Please help me out,......

Nemesco
Look in theme.php

For something like this under the Function theme footer.

Code:
    if ($index == 1)
right after it is a { then some stuff, then you will see.

Code:
	blocks(right);
right after blocks right is a closing }

You need to remove the
Code:
    if ($index == 1)
and the { right after it and } right after
Code:
	blocks(right);
Got it?

mikem
   
Reply With Quote