You sure can, but be careful, since it may overlap other content on screen at certain window sizes. Here's an example of how to position it:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>bottom graphic bar</title>
<style type="text/css">
<!--
#graphicbar {
position: absolute;
bottom: 0;
left: 0;
}
-->
</style>
</head>
<body>
<div id="content">
<p>Some content.</p>
</div>
<img id="graphicbar" alt="Graphic Bar" src="image.jpg" width="200" height="50" />
</body>
</html>
Bookmarks