Hello Everyone,
How do I call my images in css? Is this correct? src=http://www.webdeveloper.com/forum/archive/index.php/"../moneymagnet/.gif"
If not what should it be?
Thank you for your help!#div {
background: url(path/to/image.jpg) repeat;
}will this work for a logo?My code below. Thanks for your help!
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<title>Untitled</title>
<link rel="STYLESHEET" type="text/css" href=http://www.webdeveloper.com/forum/archive/index.php/".css">
<!-- Begin top graphical header -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/".gif" width="1" height="50" alt="">
</td>
</tr>
<tr><td bgcolor="blue" wrap=""><img src=http://www.webdeveloper.com/forum/archive/index.php/"logo.jpeg" width="180" height="75" alt=""></td>
</tr>
</tbody>
</table>how do I get my logo to show up on the site? ThanksWhere is your logo located? When using the ' src=http://www.webdeveloper.com/forum/archive/index.php/""' tag you have to specify the path to the resource. If the image is in the same directory, then it should be showing up. If it is in a subfolder like "images" then your 'src' tag has to reflect that, like so:
<img src=http://www.webdeveloper.com/forum/archive/index.php/"images/logo.jpeg" width="180" height="75" alt="">Thanks!