Then clone the text, and set it to a black border, with no fill. Move the text a few pixels up, and a few to the right. Next, add another text item, with the same name as your title, and a font that looks good. Set the color to one close to the background color, but just a little off. Then set the size so it just fits on the canvas, it can be a little bigger too. Try not to make it over half the size of the image, because we are slicing these up, and want them to fit on the 800x600 resolution. Adjust the opacity in the layers docker for the text to make it barely visible, but still noticable. Now the final touch. Creat a rectangle that is the same size as the large faded text you just created. Make a gradient fill, and using the pointer tool, fill it diagonally, from your chosen color, to white. In this image, i used the color #336699. once you have the diagonal gradient fill done. Open up the layers docker, and set the blend mode to Color, and the opacity to 50%.
<img src="http://ubbdev.com/db/uploads/1012191658.gif" width="212" height="60" />
Now, that looks pretty good doesn't it. But, it is only going to fit in one resolution! That's not what you wanted at all. This is where my favorite tool in fireworks come in... BEHOLD THE SLICE TOOL! Thats right, we are going to slice up the image using this tool, the left text part, the background, and the right logo. Select the slice tool (<img src="http://ubbdev.com/db/uploads/1012191852.gif" width="26" height="26" align="absmiddle" />), and drag over the three parts. First the left part, select the part from the beginning of the image, until after the large faded text. The next slice we just need a small part to use as the background, so select a small part of the
gradient fill. Lastly, select the logo portion. The following image is zoomed out at 50%, but you get the idea.
<img src="http://ubbdev.com/db/uploads/1012191717.gif" width="401" height="51" />
Now, exporting. Many people tend to get confused with fireworks, as it will only let you save as .png files. But they miss the export feature, which will let you export your image in a variety of different image types. Open up the Export Docker (window > export). Now click on the preview tab up beside the edit menu.
<img src="http://ubbdev.com/db/uploads/1012191950.gif" width="90" height="47" />
This will give you an idea what your image is going to look like when you export it. You may now adjust the settings in the export docker to fit your image right. To export, go to file > export, and enter in the file name. This will produce 3 different images. The left image, the background, and the right image.
<img src="http://ubbdev.com/db/uploads/1012192096.gif" width="515" height="441" />
This concludes the graphics portion of the tutorial. Now... moving on to the fun part.
Part Two: Putting Your Plan Into ActionI think it is safe to say you are done the hard part, now we just need to make that header come to life. You can start that by opening up wordpad. Create a new text document, or open an existing html document. We are going to want to add a border to our image, so we can to that by creating a table inside of a table. Do that by creating the following.<table width="95%" border="0" cellspacing="1" cellpadding="4" align="center"><tr><td width="57%"><font size="1"><table width="
98%" cellpadding="0" cellspacing="0" align="center">
<tr bgcolor="
#000000"><td>
<table width="100%" cellspacing="
1" cellpadding="0">
<tr><td background="
header_r1_c2.jpg">
</td>
</tr>
</table>
<font size="1">Note: Things in bold can, or should be changed.</font>
Of course, these are just my settings, you can adjust yours in any way you wish. In the first line you can adjust 'width="98%"' to fit whichever size you decide to use. On the second line you may adjust 'bgcolor="#000000"' to suit any color you wish, this will show up as the border color. The third line, you may change the border size by editing 'cellspacing="1"'. Don't foget to change the background image to suit the one that you have used. Next we move on to create yet another table.
<table width="95%" border="0" cellspacing="1" cellpadding="4" align="center"><tr><td width="57%"><font size="1"><table width="100%" cellpadding="0" cellspacing="0" align="center">
<tr><td valign="top">
<div align="left"><img src="
header_r1_c1.jpg"></div>
</td><td valign="top">
<div align="right"><img src="
header_r1_c3.jpg"></div>
</td></tr>
</table></font></td>
</tr>
</table>
The code above creates a table with two cells, one for each image. Don't forget
to rename the images to the names that you have used. Now that we have everything
displayed, we may go on to closing the table.
<table width="95%" border="0" cellspacing="1" cellpadding="4" align="center"><tr><td width="57%"><font size="1"></tr></td></table>
</tr></td></table></font></td>
</tr>
</table>
This closes the two tables created at the beginning. The <tr> tag creates a row, and the </tr> closes a row. The <td> tag creates a column, and the </td> closes a column. Now, save that html document, and open it up in your browser. Be sure to hold onto your hats folks, because you have just created yourself a spiffy new header!
<a href="http://www.clan-316.com/header.png">Click here for the .PNG file used in this tutorial.</a> (3 MB)
<a href="http://www.clan-316.com/header/index.html">Click here for the final HTML document of this tutorial.</a></font>