Have you checked these first?
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
Note: Never paste the contents of your ost-config.php file here; it holds your database credentials.
Two quick checks before posting: try clearing your browser cache, and press SHIFT+O on any Staff Panel page to enter Safe Mode (a stock osTicket with no enhancements). If the problem still shows in Safe Mode, it's in osTicket itself, not osTicket Awesome. But let us know about the issue either way.
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
This forum is public. Never post order numbers, full license keys, email addresses, or payment details.
This is the place for general questions about how billing and licensing work — renewals, activation, staging slots, plan differences, and what happens when a license lapses.
For anything tied to your specific account, refund, or payment, contact us directly instead.
Hello,
I am using OSTICKET 1.11 and Awesome 1.11-v1.0
I have this problem on Chrome and Edge.
On the queue, the numbers on the right are not showing well
Without awesome:
Regards.
Same issue here as well as other issues with formatting and display. Can we please get this fixed?

I have found the solution:
- Edit scp/css.scp.css
- Aller a:
/********* Custom Queue Nested Queue Container **********/<br />
.customQ-dropdown ul li.subQ > ul {<br />
display:none;<br />
position:absolute;<br />
top:0;<br />
left:0px;<br />
background-color:#fff;<br />
border:1px solid #ddd;<br />
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);<br />
}<br />
.customQ-dropdown ul li.subQ:hover > ul {<br />
display:block;<br />
}<br />
.customQ-dropdown ul li > span.newItemQ {<br />
padding:1px 8px 0 0;
- Add just after:<br />
position: absolute;<br />
right: 0;
thanks @delta-assurances it works
file scp/css/scp.css<br />
@@ -601,8 +601,6 @@<br />
<br />
.customQ-dropdown ul li > span.newItemQ {<br />
padding:1px 8px 0 0;<br />
- position: absolute;<br />
- right: 0;<br />
}<br />
/********* Custom Queue Add/Save a Queue Button **********/
Thank you @delta-assurances for posting this issue and your solution.
Rather than editing scp.css, here is what I recommend to fix this issue.
Add the following code to /osta/user-styles.css:
#sub_nav li + li > a {
margin-left: 0;
}
#sub_nav li.top-queue + li > a {
margin-left: 20px;
}
.customQ-dropdown ul li > span.newItemQ {
padding: 0;
margin: 0 8px 0 0;
}
This fix will be included in the next release (osTicket-Awesome-1.11-v1.1) when it becomes available.
Hello,
I try, but your fix in /osta/user-styles.css doesn't work for me.
Regards
You can try this:
#sub_nav li + li > a {
margin-left: 0 !important;
}
#sub_nav li.top-queue + li > a {
margin-left: 20px !important;
}
.customQ-dropdown ul li > span.newItemQ {
padding: 0 !important;
margin: 0 8px 0 0 !important;
}
But this fix will be included in osTicket-Awesome-1.11-v1.1, which will drop in the next day or two.