7 replies
  • WEB DESIGN
  • |
Would there be a kind soul to help me out with an issue I spent 2 days full time in trying to resolve to no avail. I'm pulling my hair out and just can't find the answer, and yes I tried all kinds. I'm using Dreamweaver MX 2004

I am trying to pull up the bottom part of my page upwards so the copyright line ends up at the bottom just above the bottom pic but bottom won't come up anymore. My page is in my signature below.

I raised each side edge graphic up but with no difference. bottom stays there.:confused: I think it has to do with my form or javascript but need an HTML expert for this.

Thank you.
#html #issue
  • Profile picture of the author Ambius
    use firebug to help figure out what causes the space. I don't have it installed on this computer so I can't help you... sorry.
    {{ DiscussionBoard.errors[3138708].message }}
  • Profile picture of the author iAmNameLess
    What bottom picture are you referring to? The no spam picture? Your copyright line is in a table under the javascript stat counter. Just need a little adjustment of code.
    {{ DiscussionBoard.errors[3139219].message }}
    • Profile picture of the author alcymart
      Originally Posted by iAmNameLess View Post

      What bottom picture are you referring to? The no spam picture? Your copyright line is in a table under the javascript stat counter. Just need a little adjustment of code.

      The bottom pic I'm referring to is named skin_02_05_mid.gif

      I want that bottom pic to move up so that the copyright lies flat on top of this pic.

      Issue still remains unresolved.
      {{ DiscussionBoard.errors[3140086].message }}
  • Profile picture of the author KirkMcD
    It's your height attributes in the td and img statements. The ones that are over 4000. Either fix them or remove them.
    {{ DiscussionBoard.errors[3139658].message }}
    • Profile picture of the author alcymart
      Originally Posted by KirkMcD View Post

      It's your height attributes in the td and img statements. The ones that are over 4000. Either fix them or remove them.
      Tried that already...Well I changed the 4108 to 0 along with the 4103 I saw elsewhere. No change. I would appreciate if you could PM me the revised source with fix applied.
      {{ DiscussionBoard.errors[3140060].message }}
  • Profile picture of the author Istvan Horvath
    Well, between the copyright line and the image you linked to... there are these:
    HTML Code:
    <br> 
      </span></p> 
    </div> 
    </td> 
    </tr> 
    </table> 
    </td>
    A line break (br)
    a paragraph closing - if there is no definition in the stylesheet, every browser will apply some margin/distance after it
    a closing div - same as above

    So, remove the line break; make sure all those elements have zero bottom margin and you'll be closer to what you want...
    Signature

    {{ DiscussionBoard.errors[3140250].message }}
    • Profile picture of the author alcymart
      Originally Posted by Istvan Horvath View Post

      Well, between the copyright line and the image you linked to... there are these:
      HTML Code:
      <br> 
        </span></p> 
      </div> 
      </td> 
      </tr> 
      </table> 
      </td>
      A line break (br)
      a paragraph closing - if there is no definition in the stylesheet, every browser will apply some margin/distance after it
      a closing div - same as above

      So, remove the line break; make sure all those elements have zero bottom margin and you'll be closer to what you want...
      [SOLVED] You nailed it Istvan!! You are my HTML Guru!

      Thank you forever...
      {{ DiscussionBoard.errors[3140395].message }}

Trending Topics