Hello, it appears that the reason why I don't see the button is because the IcoMoon is not loading:
I have compared the style definitions applied by the default template and the ones applied by your custom template and noticed that your custom template does not load the icon specific font that is used by default in Joomla! 3.0 : 'IcoMoon'. This font is used to generate the icon for the `select user` button, since your custom template does not load this font the button is not shown properly.
In order to display this button you could try adding the following CSS definitions in the component specific CSS files or in your template's CSS file:
.icon-user {
background-color: #0000FF;
color: #FFFFFF;
display: block;
height: 40px;
width: 40px;
}
With these definitions the button will be displayed, you could then set a background image for the button or change the CSS definitions to better integrate the button in your layout.
Is this right?
Thanks!