1.

Solve : Could use a little help with my vB forum...?

Answer»

Okay...here's the problem:

I'm using a mod for my vBulletin forum that places a drop down box under the RANK images for users in the post bit of the forum.

Only problem is...it's not consistent, as far as its width.  (See attached)

Now...what I'd like to do is set that drop down to a fixed width, but my CSS skills are pretty much zilch.

Below is the code that calls that drop down...

Code: [Select]<!-- post specs_menu -->
<if condition="$post['field23']">
<div id="specs_$post[postid]" class="vbmenu_control">
<a href="#specs">$vbphrase[dropdown_title]</a>
<script type="text/javascript"> vbmenu_register("specs_$post[postid]"); </script>
</div>
</if>
<!-- / post specs_menu -->
If anyone has any suggestions...I'm all ears.  THANKS in advance...

[attachment deleted by admin]This issue has been resolved...

Thanks for the help. Can you post how you worked it out? Just incase anyone ELSE needs to help.Sure why not...

Here's the code I used to fix my issue:

Code: [Select]<!-- post specs_menu -->
<if condition="$post['field23']">
<div [b]style="POSITION:absolute; width:auto;"[/b] id="specs_$post[postid]" class="vbmenu_control">
<a href="#specs">$vbphrase[dropdown_title]</a>
<script type="text/javascript"> vbmenu_register("specs_$post[postid]"); </script>
</div>
</if>
<!-- / post specs_menu -->
What I changed is in bold...Glad to hear you got this fixed. Looked for this post today while going through forum posts to see if I could be of some assistance.



Discussion

No Comment Found