The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
hi, I just purchased Vbulletin and finding way to make the width of forum home to be 800px, and other pages to be 90% width
I am finding way to do it for a day but still cannot succeed, may I know how to do it?Thank you so much |
|
#2
|
||||
|
||||
|
Do like I did, make a fixed skin and a fluid skin of the same style.
|
|
#3
|
|||
|
|||
|
Quote:
|
|
#4
|
||||
|
||||
|
No, I just made a fixed width skin for the 800x600 users and made a fluid skin for the higher resolutions.
|
|
#5
|
|||
|
|||
|
Quote:
May you explain it a little bit?I believe I would improve my skill if I achieve this. thank you~ |
|
#6
|
||||
|
||||
|
You can accomplish that by 3 template edits:
In Header find: Code:
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<table border="0" width="800px" cellpadding="0" cellspacing="0" align="center">
<else />
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
</if>
Code:
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center"> Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="800px" class="page" align="center">
<else />
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">
</if>
Code:
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]"> Code:
<if condition="in_array(THIS_SCRIPT, array('index'))">
<div class="page" style="width:800px; text-align:$stylevar[left]">
<else />
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
</if>
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|