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:
1 2 3 4 5 6 7 8 9 10 | #box{ position : relative ; left : 5px ; top : 12px ; } #box 2 { position : relative ; right : 7px ; bottom : -15px ; } |