1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Why the white margin?

Discussion in 'HTML & Website Design' started by Notting, Nov 13, 2007.

  1. #1
    Notting, Nov 13, 2007 IP
  2. wdstuff54

    wdstuff54 Well-Known Member

    Messages:
    639
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    110
    #2
    Can you describe where you see the white margin? I checked it in IE 6 and it looked fine.
     
    wdstuff54, Nov 13, 2007 IP
  3. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #3
    Here it is:

    [​IMG]

    In IE7 and IE5 it does it. did not check ie6 so maybe not in ie6. it doesnt do it in FF either.

    Need to get this sorted though as it is for a client

    Thanks
    Notting
     
    Notting, Nov 13, 2007 IP
  4. wdstuff54

    wdstuff54 Well-Known Member

    Messages:
    639
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    110
    #4
    Ok I've got an answer for you.

    In your code where you have the header.jpg image, cut out the img tag and then directly above the tr tag where you have the menu1 menu22 etc create a new row using this code
    
    
    <tr>
     <td colspan="7"><img src="http://www.emigratingservices.com/assets/images/header.jpg" width="800" height="110">
     </td>
    </tr>
    
    Code (markup):
    That should fix it. Let me know!

    Regards.
     
    wdstuff54, Nov 13, 2007 IP
    Notting likes this.
  5. clinton

    clinton Well-Known Member

    Messages:
    2,166
    Likes Received:
    44
    Best Answers:
    0
    Trophy Points:
    110
    #5
    In your CSS try changing margin-bottom to 0px and see if there is any change, to me it looks like a cross browser CSS issue...

    .content {
    margin-top: 0px;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 40px;
    text-align: justify;
    }


    or THIS....try putting the header image in a seperate cell

          <table width="800" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="assets/images/header.jpg" width="800" height="110">
                <table width="800" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td><img src="assets/images/menu1.jpg" width="28" height="33"></td>
                    <td><img src="assets/images/menu22.jpg" width="138" height="33"></td>
                    <td><a href="destinations.php" onClick="return clickreturnvalue()" onMouseOut="MM_swapImgRestore(); delayhidemenu()" onMouseOver="MM_swapImage('destination','','assets/images/menu32.jpg',1); dropdownmenu(this, event, menu1, '137px')"><img src="assets/images/menu3.jpg" alt="Destinations" name="destination" width="138" height="33" border="0"></a></td>
                    <td><a href="howitworks.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('howitworks','','assets/images/menu42.jpg',1)"><img src="assets/images/menu4.jpg" alt="How it Works" name="howitworks" width="139" height="33" border="0"></a></td>
                    <td><a href="visatypes.php" onClick="return clickreturnvalue()" onMouseOut="MM_swapImgRestore(); delayhidemenu()" onMouseOver="MM_swapImage('Visa Types','','assets/images/menu52.jpg',1); dropdownmenu(this, event, menu2, '137px')"><img src="assets/images/menu5.jpg" alt="Visa Types" name="Visa Types" width="137" height="33" border="0"></a></td>
                    <td><a href="contact.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Contactus','','assets/images/menu62.jpg',1)"><img src="assets/images/menu6.jpg" alt="Contact Us" name="Contactus" width="136" height="33" border="0"></a></td>
                    <td><img src="assets/images/menu7.jpg" width="84" height="33"></td>
                  </tr>
                </table>
    HTML:
    LIKE THIS! Take a look at the table structure for the header image.

          <table width="800" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="assets/images/header.jpg" width="800" height="110"></td>
            </tr>
            <tr>
               <td>
                <table width="800" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td><img src="assets/images/menu1.jpg" width="28" height="33"></td>
                    <td><img src="assets/images/menu22.jpg" width="138" height="33"></td>
                    <td><a href="destinations.php" onClick="return clickreturnvalue()" onMouseOut="MM_swapImgRestore(); delayhidemenu()" onMouseOver="MM_swapImage('destination','','assets/images/menu32.jpg',1); dropdownmenu(this, event, menu1, '137px')"><img src="assets/images/menu3.jpg" alt="Destinations" name="destination" width="138" height="33" border="0"></a></td>
                    <td><a href="howitworks.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('howitworks','','assets/images/menu42.jpg',1)"><img src="assets/images/menu4.jpg" alt="How it Works" name="howitworks" width="139" height="33" border="0"></a></td>
                    <td><a href="visatypes.php" onClick="return clickreturnvalue()" onMouseOut="MM_swapImgRestore(); delayhidemenu()" onMouseOver="MM_swapImage('Visa Types','','assets/images/menu52.jpg',1); dropdownmenu(this, event, menu2, '137px')"><img src="assets/images/menu5.jpg" alt="Visa Types" name="Visa Types" width="137" height="33" border="0"></a></td>
                    <td><a href="contact.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Contactus','','assets/images/menu62.jpg',1)"><img src="assets/images/menu6.jpg" alt="Contact Us" name="Contactus" width="136" height="33" border="0"></a></td>
                    <td><img src="assets/images/menu7.jpg" width="84" height="33"></td>
                  </tr>
                </table>
    HTML:

    Hope this works

    Best of luck:)
     
    clinton, Nov 13, 2007 IP
    Notting likes this.
  6. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #6
    Notting, Nov 14, 2007 IP
  7. soulscratch

    soulscratch Well-Known Member

    Messages:
    964
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    155
    #7
    On the table cell where you have the lone image, give the td an id and do something like

    td#theID img { display:block; }
     
    soulscratch, Nov 14, 2007 IP
  8. Notting

    Notting Notable Member

    Messages:
    3,210
    Likes Received:
    335
    Best Answers:
    0
    Trophy Points:
    280
    #8
    SOlved already soulscratch. Cheers
     
    Notting, Nov 14, 2007 IP