Jump to content

Adding images causes my whole php site to shift 20px


wolfinu

Recommended Posts

Hey everyone, im building a simple php portfolio website (header , index, footer)

I have 3 pages , about , contact, portfolio

 

If I add an image to the index page then click on my about page (no images) the whole site shifts to the right about 20px. If I remove the image and click the link everything is okay.

 

Anyone know what im doing wrong? Code below:

 

header

<!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=UTF-8" />

<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />

</head>

<body>

<div id="wrapper">
   
   <div id="header">
      <ul>
            <li><h2><a href="portfolio.php">PORTFOLIO</a></h2></li>
            <li><h2><a href="about.php">ABOUT</a></h2></li>
            <li><h2><a href="contact.php">WHAT WE CAN DO TOGETHER</a></h2></li>
        </ul>
   </div>

 

index

<?php include 'header.php'; ?>
    
   <div id="idea_container"> 
       <a href="portfolio.php"><img src="images/logo.jpg" width="960" height="500" /></a>
   </div>
        
<?php include 'footer.php'; ?>

 

 

 

 

footer

<div id="footer" class="footer">
      <ul>
            <li><a href="#">TWITTER</a></li>
            <li><a href="contact.php">CONTACT</a></li>
            <li><a href="index.php">HOME</a></li>
        </ul>
   </div>   

</div> <!--ending div for wrapper -->

</body>

</html>

Link to comment
Share on other sites

hey, my css is set up like this, I'm sure its wrong.

 

body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
padding:0px;
}
img {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
padding:0px;
}

Link to comment
Share on other sites

Many thanks for helping me out with this.

 

I used firebug, which is great btw. Im getting closer..

 

I did some re-coding and now as long as the pages have an image it wont shift.

Before, I didn't want a logo at the top of the pages, but adding one seemed to help.

 

so I added a 300x200 px logo to my header

 

This is so weird, this is the first time I've had this problem. I must be doing something weird in my code.

 

I checked the a tags made them all margin 0 padding 0. That 960 x 500 wasn't so much a logo as it was an intro page showing off some of the work in the portfolio.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.