Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://gauravtech04.byethost7.com/?page_id=4

And I want to align the text in the center of images?

I have tried using padding and margins but all in vain.

PS:I am a developer and a newbee to Designs...

This is my HTML

<div id="options">
    <div id="opt_1" class="leftlink" onClick="show_content(this,event)"><div class="inner">Form 1</div></div>
    <div id="opt_2" class="leftlink" onClick="show_content(this,event)"><div class="inner">Form 2</div></div>
    <div id="opt_3" class="leftlink" onClick="show_content(this,event)"><div class="inner">Form 3</div></div>
    </div>
share|improve this question
The Images are should contain text Form 1, Form 2 ,Form 3.Also I will be pleased If I can get some good sites to download these tab icons from.... – user1392367 Jul 26 '12 at 20:38
1  

closed as too localized by Wesley Murch, George Stocker Jul 26 '12 at 21:09

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Replace the CSS for .leftlink with this instead:

.leftlink {
    background: url("images/tab-icon.png") no-repeat scroll left 3px transparent;
    cursor: pointer;
    float: left;
    height: 128px; /* Height of tab-icon.png */
    line-height: 128px; /* Must equal `height` */
    text-align: center;
    width: 128px; /* Width of tab-icon.png */
}

Note: If the elements are too tall for you, resize tab-icon.png and change height, line-height, and width accordingly.

share|improve this answer
Thanks Brother... – user1392367 Jul 26 '12 at 20:57
@user1392367, if this worked for you, be sure to accept it (see How do I ask a question here? in the FAQ). – bfrohs Jul 26 '12 at 21:02
Ok I want to change the background color so that it affects images too..For that Do I have to make transparent images out of these or is there any other way..i.e ddding background color does not affects the images it just changes their backgrounds I want images to change their colors... – user1392367 Jul 26 '12 at 21:14
@user1392367, you'll have to change the image to use a transparent background. You may want to look into gradients, borders, border images, and box shadows to do a similar button without a background image. – bfrohs Jul 26 '12 at 21:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.