this is a
css question, moved to
css forum
you have added padding but you forgot one silly element ( the px )
padding:10;
should be
padding: 10px;
if you wanted to add padding only to the left of your text you should put padding-left:10px
or another way it could be done is
padding: 1px 2px 3px 4px;
this is defining the 4 sides of the element ( i have added values to show you )
where 1px is that is the top
where 2px is that is the right
where 3px is that is the bottom
where 4px is that is the left
if you wanted nothing for one particular side you can put in something like this
1px 0 3px 4px ;
that is saying we want padding on the top, none on the right, and we do want padding on the bottom and left