Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: Odd problem

  1. #11
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    That just brings the top gap back
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


  2. #12
    Join Date
    Sep 2006
    Location
    Evanston, Illinois.
    Posts
    2,361
    Tokens
    0

    Latest Awards:

    Default

    try removing the submit button and then going back into it and adding it again, namely to see if anything expandable is going wrong.
    How could this hapen to meeeeeeeeeeeeeee?lol.

  3. #13
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    huh? delete the code and then add it again?
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


  4. #14
    Join Date
    Jul 2005
    Location
    Belgium
    Posts
    2,492
    Tokens
    147

    Latest Awards:

    Default

    Quote Originally Posted by Forge View Post
    huh? delete the code and then add it again?
    This is what I'd do, but I dont have a good view at it as I don't have the images etc:

    html (modified):
    HTML Code:
    <div id="container">
    
    <div id="logo"></div>
    
    <div id="boxtop"></div>
    
    <div id="boxmid">
    	<div id="boxmid_content">
    		<form action="process.php" enctype="multipart/form-data" method="POST">
    		<input type="file" name="file" size="50" /><br /><br />
    		<input type="submit" name="submit" value="upload" />
    		</form>
    	</div>
    </div>
    
    <div id="boxbtm"></div>
    
    </div>
    css:
    Code:
    #container {
    width: 550px;
    padding: 0;
    text-align: left;
    }
    
    #logo {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("../images/logo.png");
    background-repeat: no-repeat;
    height: 80px;
    }
    
    #boxtop {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("../images/boxtop.png");
    background-repeat: no-repeat;
    height: 30px;
    }
    
    #boxmid {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("../images/boxmid.png");
    background-repeat: no-repeat;
    }
    
    #boxmid_content{
    	position: relative;
    	width: 500px;
    	padding-left: 25px;
    }
    
    #boxbtm {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("../images/boxbtm.png");
    background-repeat: no-repeat;
    height: 30px;
    }
    
    input {
    border: 1px solid #004A7F;
    padding: 3px;
    font-family: trebuchet MS;
    font-size: 13px;
    color: #000000;
    }

  5. #15
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    Its just moved the form a few pixels to the right, the gaps still there.
    P.S. thanks alot for the help everyone
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


  6. #16
    Join Date
    Jul 2005
    Location
    Belgium
    Posts
    2,492
    Tokens
    147

    Latest Awards:

    Default

    Quote Originally Posted by Forge View Post
    Its just moved the form a few pixels to the right, the gaps still there.
    P.S. thanks alot for the help everyone
    hmm.. Can you send me the images ? or links to them.

    (edit: only the images from container right, so top mid btm)

  7. #17
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    Sure, ill come on msn
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


  8. #18
    Join Date
    Jul 2005
    Location
    Belgium
    Posts
    2,492
    Tokens
    147

    Latest Awards:

    Default

    Okay, I guesse everyone looked over this, but your mid image was set to no-repeat... might wanna set it to repeat-y :p

    html:
    HTML Code:
    <div id="container">
    
    <div id="logo"></div>
    
    <div id="boxtop"></div>
    
    <div id="boxmid">
    	<div id="boxmid_content">
    		<form action="process.php" enctype="multipart/form-data" method="POST">
    		<input type="file" name="file" size="50" /><br /><br />
    		<input type="submit" name="submit" value="upload" />
    		</form>
    	</div>
    </div>
    
    <div id="boxbtm"></div>
    
    </div>

    Code:
    #container {
    width: 550px;
    padding: 0;
    text-align: left;
    }
    
    #logo {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("images/logo.png");
    background-repeat: no-repeat;
    height: 80px;
    }
    
    #boxtop {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("images/boxtop.png");
    background-repeat: no-repeat;
    height: 30px;
    }
    
    #boxmid {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("images/boxmid.png");
    background-repeat: repeat-y;
    overflow: hidden;
    }
    
    #boxmid_content{
    	position: relative;
    	width: 500px;
    	padding-left: 25px;
    }
    
    #boxbtm {
    position: relative;
    float: left;
    width: 550px;
    background-image: url("images/boxbtm.png");
    background-repeat: no-repeat;
    height: 30px;
    }
    
    input {
    position: relative;
    border: 1px solid #004A7F;
    padding: 3px;
    font-family: trebuchet MS;
    font-size: 13px;
    color: #000000;
    }

  9. #19
    Join Date
    Nov 2007
    Posts
    753
    Tokens
    0

    Default

    I just spotted that as you said lmao! no wonder nobody could fix it!
    Publishing free website designs, watch this space!
    Total number of designs published: 0
    Current work in progress: Landscape Design


Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •