Jump to content

Img tag not appearing in div


WilliamNova

Recommended Posts

I have no idea what I could be doing wrong. It's incredibly frustrating considering I've never had this problem. And more so, since I'm designing another website that has the SAME EXACT CSS for these divs. Anyways, the image will not show up. I have made sure the path is correctly spelled and that images folder exists. I have made sure the class names in both home.php and main.css are spelled correctly and match.

 

home.php

<div id="container">
	<div class="adContainer">
		<div class="ad">
			<img src="./images/ad.png" width="600" height="100" />
		</div>
	</div>
</div>

main.css

#container {
	width: 1000px;
	background-color: #FFF;
}
.adContainer {
	margin-bottom: 10px;
}
.ad {
	border-top: 0px;
	margin-bottom: 10px;
	padding: 10px;
	height: 100px;
	width: 800px;
}
Link to comment
https://forums.phpfreaks.com/topic/281873-img-tag-not-appearing-in-div/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.