I have found a way to keep the modules in vBadvanced from extending the full length of the viewing page. Simply go into adv_portal and change:
Code:
<table align="center" class="page" cellspacing="0" cellpadding="0" width="100%">
to:
Code:
<table align="center" class="page" cellspacing="0" cellpadding="0" width="95%">
That will match up the pages so that there are more fluid.
Now the only problem I am having is figuring out what customization you did to the original navbar template. Seems that the navbar bit extends the full length of the page in vBadvanced. The only way that I have found to correct it is by changing:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
to:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="95%" align="center">
However, when I do this, it also changes the width dimensions of the navbar bit on the forums page.
Somewhere, you have a 5% indent on the navbar bit and I cannot seem to figure out where it is.
Any help would be appreciated.