There is a difference between the Sugar versions ... My first test was with 6.0.1 CE and there it worked. Now I installed it on 6.2.4 CE and there is NO such button - the same as in your screenshot.
The problem is that there is a difference in HTML in both versions ...
Here is the HTML code in 6.2.4 (which is not visible with Aqua theme ...):
PHP Code:
<div id="bottomLinks">
<a onclick="void window.open('index.php?action=DetailView&module=Users&record=1&type=&return_id=1&print=true','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')" href="#"><img alt="Print" src="themes/Sugar5/images/print.gif?c=1"></a> <a onclick="void window.open('index.php?action=DetailView&module=Users&record=1&type=&return_id=1&print=true','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')" class="bottomLink" href="#">Print</a><a href="#top"> [...]
and here from 6.0.1 (which is ok with Aqua theme):
PHP Code:
<span class="utils"><a class="utilsLink" href="javascript:void window.open('index.php?action=DetailView&module=Users&record=1&type=&return_id=1&print=true','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')">
<img alt="Print" src="themes/Sugar5/images/print.gif?c=1"></a>
<a class="utilsLink" href="javascript:void window.open('index.php?action=DetailView&module=Users&record=1&type=&return_id=1&print=true','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')">
Print
</a>[...]
The problem is that Aqua theme has no proper styles defined for that bottomLinks section.
You'd have to add styles for <div> id 'bottomLinks' and contained <a> tags to place these buttons anywhere on the screen where they could be shown ...
Bookmarks