Wired1 |
01-06-2006 02:18 AM |
Quote:
Originally Posted by 1996 328ti
Is there a way to make one line taller?
For instance, my modification line doesn't fit all of the information.
|
The actual code for the dropdown is a function done by vBulletin. Example code from my hack for a field within the dropdown:
Code:
<tr><td class="vbmenu_option">$post[field6]</td></tr>
The class made by vBulletin may override this, but try:
Code:
<tr><td class="vbmenu_option" width="100">$post[field6]</td></tr>
May want to try having multiple Modification fields (e.g. I've got HDD 1, HDD 2, etc. on mine). Don't know much about cars (although Need For Speed: Most Wanted rocks), but you may also want to try fields like Rims, spoiler, body kit, etc. for example. (yeah, I'm just pulling stuff I've seen in NFS:MW, Rides, and Overhaulin'). Ask the forum members for suggestions. The posters of my site helped tweak the fields, and it's become a more effective tool because of them.
|