Issue with Logo Appearing

Geodun1

New Member
Site URL: http://idebate.reviveddesigns.com

Problem: I'm designing a website for a school project (Web Design and Interactivity) and am having a mysterious issue with my logo not appearing. Considering the php code going into the debate system, login/log off, etc., it seems strange that this be my main problem.

The image is linked correctly in the code uploaded, and is in the correct place in the web directory, but still it only shows the alt text. I'm using Firefox 3, but the problem occurs in IE6&7 as well. Any comments or suggestions related to this issue would be appreciated!

Code:

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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>iDebate, Do you? Start today!</title>
<link rel="stylesheet" href="css/master.css" type="text/css" />
<link rel="stylesheet" href="css/text_definitions.css" type="text/css" />
<link rel="stylesheet" href="css/menu_controls.css" type="text/css" />
</head>

<body>

<div class="canvas">

<div class="header">
	<div class="navigation">
		<a href="index.php"><http://www.webdesignforum.com/images/link_home.gif" alt="Home" /></a><br />
		<a href="news.php"><http://www.webdesignforum.com/images/link_news.gif" alt="News" /></a><br />
		<a href="debate.php"><http://www.webdesignforum.com/images/link_debate.gif" alt="Debate Center" /></a><br />
		<a href="about.php"><http://www.webdesignforum.com/images/link_about.gif" alt="About" /></a><br />
		<a href="user.php"><http://www.webdesignforum.com/images/link_user.gif" alt="User Panel" /></a><br />
	</div>
[COLOR="Red"][I][B]	<div class="header">
		<img src="http://www.webdesignforum.com/images/header.gif" alt="iDebate" />
	</div>[/B][/I][/COLOR]
</div>
<!-- Body Starts Here-->
<div class="main_container">
	<div class="main">
		<div class="body_content">
			<h1>iDebate Home Page</h1>
			<p>Welcome to iDebate! As stated in the title, iDebate is a debate forum simplified into a user friendly "Topic, comment" system that streamlines the post and reply process. This benefits the user by removing the long hours spent trolling through forums trying to find interesting topics. Every topic posted has a meaning, and every comment deals with the topic in the whole. They say there is a time and place for politics, well here it is.</p>
			<p>To get started with iDebate, you should <a href="register.php">register</a> for an account. Once you have completed this process, head over to our <a href="debate.php">Debate Center</a> and see what topics there are to get involved in. If you don't see anything to your liking, you can <a href="request.php">request</a> a topic be added to our database. To find a topic to your liking, try the search field below:</p>
		</div>
	</div>
</div>
<div class="footer">
<span id="footerspace">&copy; 2008 Revived Designs & George Dunbar - <a href="http://www.reviveddesigns.com">http://www.reviveddesigns.com</a></span>
</div>

</div>

</body>
</html>

I've included the code in order to make this easier, but the problem area (or where I believe it to be) is highlighted. If you need my css or folder set up, ask and I'll edit this post. (Note that the image paths were edited by the forum to include WDF's url for some reason, the actual path starts at "images/")
 
Last edited:

Geodun1

New Member
Problem solved, I capitalized the H in Header on accident when saving it originally. Please lock/delete.
 

jnjc

New Member
Thanks Geodun1,

It's good when users take the time to post when they resolve an issue, it saves us time trying to figure out what is wrong with an issue that is already resolved.
 
Top