- Professional Website Templates
A huge selection of professional website templates.
- Cheap Domain Names
Domains from the world's #1 domain registrar.
- Cheap Web Hosting
Premium quality web hosting at budget prices.
- Free CSS Templates
Download hundreds of free CSS website templates.
- Free Web Templates
The biggest collection of free templates.
- CSS Templates For Free
Simple, easy to use CSS templates.
- Build a Free Website
Build an amazing website for free.
Help and Information : Buttons
How do I go about labeling a button I downloaded?
There are two ways to do this:
Use an image editor to label the button image
You can use almost any image editor to do this, including Paint Shop Pro, Adobe Photoshop, and Windows Paint.
- Open up the button you downloaded in the image editor of your choice.
- Use your editor's text tool (usually a represented by a T icon) to write your text on the button.
- Save the image.
Please note that you won't be able to edit the text later if you use this method.
Use CSS and HTML to overlay your text on the image
This is a bit more complicated than the other approach, but is a lot more flexible and lets you edit the button text at any time. If you're not familiar with CSS, please read this site for a very useful introduction to the subject.
Insert the following CSS code in your stylesheet:
a.mybutton { display: block; float: left; background-image: url('buttonimage.jpg'); background-repeat: no-repeat; width: 100px; height: 30px; padding-top: 5px; text-align: center; }You will need to change the width and height values to match the dimensions of your button image. Use the padding-top value to vertically align your text label as needed.
Whenever you want to use that button as a link, use the following HTML code:
<a href="page.html" class="mybutton">Button Text</a>
