On 24/5/07 Eve Elberg wrote:

When I linked to a jpg there was a space between the top of the
page and the top of the graphic. I would like the graphic to
"bleed" off the top of the page with no white space.

Any suggestions?


If you are saying when you simply link to an jpeg file then in order to remove any space round the image when you view it in a web browser you'll need to wrap it in HTML and style out the spacing and link to that file:

For example a quick and dirty way to do that would be to use the universal CSS selector *

<!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>Untitled</title>
<meta name="generator" content="BBEdit 8.6" />
<style type="text/css" title="text/css">
* {
    margin: 0;
    padding: 0;
}
</style>
</head>
<body>
<img src="http://a248.e.akamai.net/7/248/2041/1268/store.apple.com/Catalog/US/Images/cp_top_dads_grads.jpg"; alt="" width="433" height="217" />
</body>
</html>




--
------------------------------------------------------------------------
Have a feature request? Not sure the software's working correctly?
If so, please send mail to <[EMAIL PROTECTED]>, not to the list.
List FAQ: <http://www.barebones.com/support/lists/bbedit_script.shtml>
List archives: <http://www.listsearch.com/bbeditscripting.lasso>
To unsubscribe, send mail to:  <[EMAIL PROTECTED]>

Reply via email to