Positioning text on images?

Discussion in 'CSS' started by tobydawson13, Jul 13, 2010.

  1. #1
    Hi, could somebody tell me how I can position the text in each of the buttons below, 10px from the right side of each button?
    Thanks :)

    <style>
    a.delete,a.edit,a.quote{color:#fff;}
    a.delete:hover,a.edit:hover,a.quote:hover{text-decoration:none}
    .delete,.edit,.quote{width:48px;height:18px;display:inline-block;}
    .quote{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    .edit{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    .delete{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    </style>
    
    <a href="#" class="edit">1</a> 
    <a href="#" class="delete">2</a> 
    <a href="#" class="quote">3</a>
    HTML:
     
    Last edited: Jul 13, 2010
    tobydawson13, Jul 13, 2010 IP
  2. Deacalion

    Deacalion Peon

    Messages:
    438
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Something like this.

    <style>
    a.delete,a.edit,a.quote{color:#fff;}
    a.delete:hover,a.edit:hover,a.quote:hover{text-decoration:none}
    .delete,.edit,.quote{width:48px;height:18px;display:inline-block;}
    .quote{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    .edit{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    .delete{background:url(http://card123.danmackay.com/skins/ParadiseBlue/BLANK_button_small.gif) no-repeat}
    a.delete span,a.edit span,a.quote span{display:block;text-align:right;padding-right:10px}
    </style>
    
    <a href="#" class="edit"><span>1</span></a> 
    <a href="#" class="delete"><span>2</span></a> 
    <a href="#" class="quote"><span>3</span></a>
    Code (markup):
     
    Deacalion, Jul 13, 2010 IP
  3. tobydawson13

    tobydawson13 Active Member

    Messages:
    645
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    60
    #3
    Exactly what I was looking for, thank you :)
     
    tobydawson13, Jul 13, 2010 IP
  4. Deacalion

    Deacalion Peon

    Messages:
    438
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    No problem :)
     
    Deacalion, Jul 13, 2010 IP