i too experience this on certain skins like Brave for 3.4, you can just do a simple css edit and fix it
two ways to do it first is easy just search this code in ipb_styles.css
.post_body ul.post_controls{ margin: 0 -12px -12px -197px; }
and add
overflow: visible;
to it
2nd is even easier just search this code in the same ipb_styles.css
ul.post_controls {
margin: 0;
background: #222222;
border-top: 1px solid #2b2b2b;
margin-top: 10px;
padding: 6px;
clear: both;
overflow: hidden;
}
and just change
overflow: hidden;
to
overflow: visible;
both worked for me ^^