MyBB Community Forums

Full Version: How to make responsive usercp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i make usercp responsive or how to add drop down menu in usercp

You can simply create a form including a <select> with a GET method and add single menu links into <option> with a value of the action parameter:

Example (not tested):
<form action="usercp.php" method="GET">
<select name="action">
<option value="profile">Edit profile</option>
...
</select>
</form>

If you want to create an entire respnosive User CP, you might check my MyBB forum for inspiration of a 100% responsive design/code.

[ExiTuS]