// We need some CSS to position the paragraph
function quotes_css() {
// This makes sure that the positioning is also good for right-to-left languages
$x = is_rtl() ? 'left' : 'right';
echo "
<style type='text/css'>
#dolly {
display: none !important;
}
#movie-quotes {
float: $x;
padding-$x: 5px;
padding-top: 5px;
margin: 0;
font-size: 11px;
}
</style>
";
}
add_action( 'admin_head', 'quotes_css' );