MyBB Community Forums

Full Version: Advanced sidebox + custom drop down quicklink list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i need help with the advanced sidebox, i did create a drop down quicklink menu list and this is the code:
<form>
<select onChange="location=this.options[this.selectedIndex].value;" style="font-family:'Verdana';color:#CC3333;background-color:#F8F8ff;font-size:8pt;">
<option value="http://www.uniting-people.eu/forum/">Choose below</option>
<option value="http://uniting-people.eu/forum/Thread-Introduce-yourself">Introduce yourself!</option>
<option value="http://uniting-people.eu/forum/usercp.php?action=avatar">Add/Change avatar!</option>
<option value="http://uniting-people.eu/forum/usercp.php?action=profile">Customize your profile!</option>
<option value="http://uniting-people.eu/forum/Forum-Survey">Vote Now!</option>
<option value="http://uniting-people.eu/forum/Thread-Forum-Feedback">Feedback for forum!</option>
</select>
</form>
See also attachment #1:[attachment=29644]

And if i save and add it, this is the result: [attachment=29645]
This is kinda wrong because the Quicklink should be above the content.

Also i would like to know how to make the drop down menu-button exactly on the same size as the quicklink button.

Thanks & Regards,
k1R@
Well you haven't told me what you want the final result to look like so:

If you want the drop-down to appear by itself (with no title bar) just use the same code you have but untick 'Wrap Content' . . .

If you want the drop-down to appear inside the side box then change your code to this:

<tr>
	<td class="trow1">
		<form>
		<select onChange="location=this.options[this.selectedIndex].value;" style="font-family:'Verdana';color:#CC3333;background-color:#F8F8ff;font-size:8pt;">
		<option value="http://www.uniting-people.eu/forum/">Choose below</option>
		<option value="http://uniting-people.eu/forum/Thread-Introduce-yourself">Introduce yourself!</option>
		<option value="http://uniting-people.eu/forum/usercp.php?action=avatar">Add/Change avatar!</option>
		<option value="http://uniting-people.eu/forum/usercp.php?action=profile">Customize your profile!</option>
		<option value="http://uniting-people.eu/forum/Forum-Survey">Vote Now!</option>
		<option value="http://uniting-people.eu/forum/Thread-Forum-Feedback">Feedback for forum!</option>
		</select>
		</form>
	</td>
</tr>
Thank you very much.
That all i did need.