How to Move an Element in The Theme
Sometimes there is an element in the theme that you may want to realign or simply to move a little bit. The easiest way to do this is to use the position: relative CSS property. After applying the position relative property you can offset the element from its position according to the properties top or bottom and/or left or right.
Example:
#box{ position:relative; left:5px; top:12px; } #box2{ position:relative; right:7px; bottom:-15px; }