MyBB Community Forums

Full Version: b lalg
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well, and not understand much what I mean, but as it could solve?
Thank you.
UP
Big Grin
Is your sidebar width in pixels or percentages ?

I have pagination on portal with custom blocks on right side and when there isn't any announcement my sidebar won't resize (your is resizing).

If you are interested you can implement following solution to your sidebar.

BACKUP YOUR PORTAL TEMPLATE (copy all content from portal template and paste it in text editor like notepad ++ and save it) and paste following content).

<div class="portal_wrap">

<div class="portal_announcement_list">

{$announcements}

</div>

</div>

<div class="portal_sidebar">

{$welcome}
{$pms}
{$search}
{$latestthreads}
{$whosonline}
{$stats}

</div>

<br class="clear" />
in global.css paste following content:


.portal_wrap {
 
   float: left;
   margin-right: -220px;
   width:100%;
  
}

.portal_announcement_list {

   margin-right:220px;

}

.portal_sidebar {

   width:200px;
   float:right;

}

Pages: 1 2