This will make the image appear in the top right of the <div class="drawer">
PHP Code:
.drawer {
width: 92px;
height: 40px;
background: url(<?php echo base_url(); ?>assets/images/config/small_door.jpg) no-repeat top right;
display:block;
}
Or this will make the whole <div class="drawer"> move to the right
PHP Code:
.drawer {
width: 92px;
height: 40px;
background: url(<?php echo base_url(); ?>assets/images/config/small_door.jpg) no-repeat;
display:block;
float: right;
}