How can I create dropdown menu on options "Mark all topics read / Start Watch this forum" with html/css in forums?
My forum version is PunBB.
My forum version is PunBB.
<select>
<option>Milk</option>
<option>Coffee</option>
<option>Tea</option>
</select>
<ul class="forum_menu">
<li><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a> </li>
<li>{S_WATCH_FORUM}</li>
</ul>
 Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
<span class="forumlink"><a class="forumlink" "><span class="genmed"><form>
<select style="font-weight: bold;" size="1" name="go_to">
<option selected="selected" value="#">select</option>
<option value="URL">name1</option>
<option value="URL">name2</option>
</select>
<input type="button" style="font-weight: bold;" onclick="location =
form.go_to.options[form.go_to.selectedIndex].value;" value="go">
</form><br /></span><span class="gensmall"></span></td><td class="row3" align="center"
<div class="main-foot clearfix">
<!-- BEGIN multi_selection -->
<input onclick="check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}();" type="checkbox" name="all_mark_{topics_list_box.row.header_table.BOX_ID}" value="0" />
<!-- END multi_selection -->
<p class="h2">{L_TOPICS} [{topics_list_box.row.bottom.COUNT_TOTAL_TOPICS}]</p>
<p class="options">
<span id="userTable5"><span class="userBox5"><img style="position: relative;width: 16px;height: 16px;" src="http://i56.servimg.com/u/f56/18/59/49/93/align_10.png" /> <span class="popable5">
<a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a><br /> {S_WATCH_FORUM}
</span></span> </span>
<a href="#top">{L_BACK_TO_TOP}</a>
</p>
</div>
#userTable5 { position:relative; }
#userTable5 .popable5 {
background: #FFF;
border-radius: 2px;
border: 2px solid #ABABAB;
bottom: -9px;
color: #D88B8B!important;
font-weight: 700;
left: -340px;
padding: 5px;
position: absolute;
right: -10px;
text-decoration: none;
text-shadow: 1px 1px 1px #6F6F6F;
transition: 300ms;
visibility: hidden;
white-space: nowrap;
z-index: 9;
}
#userTable5:hover .popable5 {
font-size:12px;
visibility:visible;
}
 Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
 Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
 Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |