MyBB Community Forums

Full Version: Member list - graphic glitch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It needs some loveĀ [attachment=32189]
What do you suggest?
I'd suggest to add a small gap (5px or so) between the order by dropdown and the asc/desc radio boxes...
At least Smile there are some more glitches in new theme... many minor things but it needs somebody who has time to solve this

http://community.mybb.com/thread-157628-...pid1093311
Without concrete suggestions, we can't open a new issue. Is the only problem the 5px padding?
Partically yes, not hard to fix this...
(2014-08-17, 09:57 PM)Pirata Nervo Wrote: [ -> ]Without concrete suggestions, we can't open a new issue. Is the only problem the 5px padding?

actually a little more than the 5px padding..

this can be......

[Image: image.png]

made to look like this...... looks neat isnt it....
[Image: image.png]
@mmadhankumar - amazing, something like that Smile
This could be a variant to fix this glitch and achieve the example given by mmadhankumar:

<td class="trow1" width="33%">
 <div style="padding-bottom: 4px">
 <input type="radio" class="radio" name="order" id="order_asc" value="ascending" checked="checked"> <label for="order_asc">ascending order</label>
 <input type="radio" class="radio" name="order" id="order_desc" value="descending"> <label for="order_desc">descending order</label>
 </div>
 <select name="sort" id="sort" style="width: 99%;">
 <option value="username">Sort by: Username</option>
 <option value="regdate" selected="selected">Sort by: Registration date</option>
 <option value="lastvisit">Sort by: Last visit</option>
 <option value="postnum">Sort by: Post count</option>
 <option value="threadnum">Sort by: Thread count</option>
 <option value="referrals">Sort by: Members referred</option>
 </select>
 <br />
</td>
memberlist template

[attachment=32209]
Pages: 1 2