MyBB Community Forums
Advanced sidebox + custom drop down quicklink list - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Support (https://community.mybb.com/forum-72.html)
+---- Thread: Advanced sidebox + custom drop down quicklink list (/thread-141745.html)



Advanced sidebox + custom drop down quicklink list - k1R@ - 2013-06-29

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:    

And if i save and add it, this is the result:    
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@


RE: Advanced sidebox + custom drop down quicklink list - Wildcard - 2013-06-29

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>



RE: Advanced sidebox + custom drop down quicklink list - k1R@ - 2013-06-29

Thank you very much.
That all i did need.