Anyone knows the css code for the username & rank under the avatar. Please be so kind only the code for phpbb3 version.
Thanks in advance!
Thanks in advance!
$(function () {
$('.postprofile dl') .each(function () {
var theBox = $(this) .children('dt:first');
var uNameX = theBox.children('strong') .html() + '<br>';
theBox.children('a') .before(uNameX);
theBox.children('strong') .hide()
})
});