| hollister, go to Control Panel -> Customize design -> Site pages. E.g. you have the following code Quote <?if($NEWS_CALENDAR$)?><table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>News calendar</b></td></tr><tr><td class="boxContent" align="center">$NEWS_CALENDAR$</td></tr></table><?endif?> <?if($SEARCH_FORM$)?><table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>Search</b></td></tr><tr><td class="boxContent" align="center">$SEARCH_FORM$</td></tr></table><?endif?> <table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>Site friends</b></td></tr><tr><td class="boxContent">$GLOBAL_FRIENDS$</td></tr></table> Here you have News Calendar, then Search, and then Site friends. And you want to put Site friends at the very beginning. Then just take the code of Site Friends block Code <table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>Site friends</b></td></tr><tr><td class="boxContent">$GLOBAL_FRIENDS$</td></tr></table> and paste it before the calendar code. Like this: Quote <table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>Site friends</b></td></tr><tr><td class="boxContent">$GLOBAL_FRIENDS$</td></tr></table> <?if($NEWS_CALENDAR$)?><table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>News calendar</b></td></tr><tr><td class="boxContent" align="center">$NEWS_CALENDAR$</td></tr></table><?endif?> <?if($SEARCH_FORM$)?><table border="0" cellpadding="0" cellspacing="0" class="boxTable"><tr><td class="boxTitle"><b>Search</b></td></tr><tr><td class="boxContent" align="center">$SEARCH_FORM$</td></tr></table><?endif?> Hope this time you'll get it. If you want to make the page skinnier you must know HTML and CSS. Try to choose another standard design.
|