diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index 52ee6c0ad2..29e02af034 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -535,7 +535,18 @@ function insert_single_user(formId, user) var $this = $(this), $body = $('body'), links = $this.children().not('.skip-responsive'), - toggle = $this.append('
').children('.responsive-menu'), + html = ' '; + + if (links.is('.rightside')) + { + links.filter('.rightside:first').before(html); + } + else + { + $this.append(html); + } + + var toggle = $this.children('.responsive-menu'), menu = toggle.find('.responsive-popup'), lastWidth = false, responsive = false,