user3873176
user3873176

Reputation: 1

Extra Spacing Image Responsive Website

I'm working on a responsive website and my there is extra space after my main image:http://juddbuilders.com/www/

I cannot figure out what is causing this extra space. Even if I take out the nav/all class styles on the photo the space remains between between the photo and .

Could someone please help me? Thank you!

<div id="wrapper">
 <?php include('includes/header.php'); ?>
 <img class="fluid-img" src="images/header-photo.jpg" alt="Plan Your Home" width="1140"    height="400"/>

Upvotes: 0

Views: 51

Answers (1)

Joe
Joe

Reputation: 11

Just add to ur CSS.

.fluid-img{
  display:block;
}

Upvotes: 1

Related Questions