View Single Post
Old
  (#2 (permalink))
Mighty_Y
Moderator
 
Status: Offline
Posts: 957
Join Date: Nov 2002
Location: Belgium
07-15-2003, 04:09 AM

find this in header.php
Code:
if ($home == 1) {
    message_box();
    blocks(Center);
}
and change it to
Code:
if ($home == 1) {
    blocks(Center);
    message_box();
}
this will put center up blocks above the messages


Yannick R. aka Mighty_Y
http://support.code-area51.com
http://www.code-area51.com

Search before asking makes my life easier!
   
Reply With Quote