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.

Buying I will pay $25 to the first person who can post a solution to my html error

Discussion in 'Programming' started by webnetsecure, Oct 6, 2010.

  1. #1
    Somehow I introduced a bug that I can't find. I will pay $25 to the first person to post to this thread the problem AND A FIX. You may need to to a file save-as to put a local copy on your hard disk to find the problem.

    Ok so here is the problem:

    http://www.xmms3.com/sami/What_does...ber_is_temporarily_disconnected-qna39774.html

    works fine

    Now the new version that has a bug:

    http://www.xmms3.com/branch/What_do...ber_is_temporarily_disconnected-qna39774.html

    Notice the box that is supposed to go around the entire page now only goes around the top header area. I can only imagine a div or table was closed early or something. Anyway I will pay you $25 if are the first to post a solution to this thread. Do not PM me the solution because I need it to be clear who was first in case there are two solutions close together.

    Thanks guys!

    Doug
     
    webnetsecure, Oct 6, 2010 IP
  2. RiptideSolutions

    RiptideSolutions Active Member

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    65
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    I have sent you a PM with the html fix.

    Thanks :D
     
    RiptideSolutions, Oct 6, 2010 IP
  3. shawnssj

    shawnssj Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    13
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Ok, thats an extremely incorrect way about going about solving this. Defining the width of that SPECIFIC page in question doesn't fix it for any of the other pages (as this is a dynamic script).

    The ACTUAL problem is that after the <div id="content">(the content was here)</div> he didnt add the following:

    <div style="clear:both">&nbsp;</div>

    along with the footer code:

    <table cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color:green;color:white;">
    <tbody>
    <tr>
    <td nowrap="" valign="top" align="center" class="Footer">
    <span style="text-decoration: none;color:white;" id="bbb">
    <a href="http://www.xmms3.com/sami/contactus.php">

    Contact Us

    </a>

    | <a href="http://www.xmms3.com/sami/aboutus.php">

    About Us

    </a> |
    <a href="http://www.xmms3.com/sami/privacy.php">

    Privacy Policy

    </a><br>

    <a href="http://www.answermefast.com"><strong>
    &copy; 2008-2009, xmms3.com, All Rights Reserved.
    </strong></a><br>An <a href="http://www.extremecow.com">Extreme Cow</a> Company.<br>Visit our newest addition, <a href="http://www.askmefast.com">AskMeFast</a>
    </span>
    </td>
    </tr>
    </tbody>
    </table>

    which also causes the footer floating along the right of the page instead of anchoring to the bottom.

    Please implement the actual solution and PM me for payment details.
     
    Last edited: Oct 6, 2010
    shawnssj, Oct 6, 2010 IP
  4. webnetsecure

    webnetsecure Active Member

    Messages:
    168
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    I don't think I was clear. I need somebody to show me a snippet of code and where to place it. I already understand conceptually the problem and the things that can be tried. Riptidesolutions pmed me a link to a copy of my page "fixed" but I had that to start with. I just don't know exactly what code i broke and where. In other words show me where to put <div style="clear:both">&nbsp;</div> if that indeed is the problem. Thanks everyone for helping. Doug
     
    webnetsecure, Oct 6, 2010 IP
  5. shawnssj

    shawnssj Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    13
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    Right after <div id="content"></div> ends. The best way to locate it would be to use a text editor with syntax highlighting (i use Notepad++) and click on the plus sign next to where you find <div id="content"> to un-expand the entire div. If you cannot locate it on your own, I can save the HTML file and add in the lines.
     
    shawnssj, Oct 6, 2010 IP
  6. webnetsecure

    webnetsecure Active Member

    Messages:
    168
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #6
    Sorry to be so dense, but can you simply cut and paste a chunk of the code with an <insert here> or something.
     
    webnetsecure, Oct 6, 2010 IP
  7. shawnssj

    shawnssj Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    13
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #7
    Basically, find this section:
    </td></tr></tbody></table></div></div></div></div>
    Code (markup):
    and do this

    </td></tr></tbody></table></div></div></div>
    <div style="clear:both">&nbsp;</div>
    <table cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color:green;color:white;">
    <tbody>
    <tr>
    <td nowrap="" valign="top" align="center" class="Footer">
    <span style="text-decoration: none;color:white;" id="bbb">
    <a href="http://www.xmms3.com/sami/contactus.php">
    
    Contact Us
    
    </a>
    
    | <a href="http://www.xmms3.com/sami/aboutus.php">
    
    About Us
    
    </a> |
    <a href="http://www.xmms3.com/sami/privacy.php">
    
    Privacy Policy
    
    </a><br>
    
    <a href="http://www.answermefast.com"><strong>
    &copy; 2008-2009, xmms3.com, All Rights Reserved.
    </strong></a><br>An <a href="http://www.extremecow.com">Extreme Cow</a> Company.<br>Visit our newest addition, <a href="http://www.askmefast.com">AskMeFast</a>
    </span>
    </td>
    </tr>
    </tbody>
    </table>
    </div>
    Code (markup):
     
    Last edited: Oct 6, 2010
    shawnssj, Oct 6, 2010 IP
  8. viral2583

    viral2583 Well-Known Member

    Messages:
    352
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #8
    Hello,

    First you have to delete or comment this code from your html:

    "
    <table style="background-color: green; color: white;" border="0" cellpadding="0" cellspacing="0" width="100%">
    <tbody>
    <tr>
    <td class="Footer" align="center" valign="top" nowrap="nowrap">
    <span id="bbb" style="text-decoration: none; color: white;">
    <a href="http://www.xmms3.com/branch/contactus.php">

    Contact Us

    </a>

    | <a href="http://www.xmms3.com/branch/aboutus.php">

    About Us

    </a> |
    <a href="http://www.xmms3.com/branch/privacy.php">

    Privacy Policy

    </a> |
    <a href="http://www.xmms3.com/branch/tos.php">

    Disclaimer

    </a><br>

    <a href="http://www.answermefast.com/"><strong>
    © 2008-2010, xmms3.com, All Rights Reserved.
    </strong></a><br>An <a href="http://www.extremecow.com/">Extreme Cow</a> Company.<br>Visit our newest addition, <a href="http://www.askmefast.com/">AskMeFast</a></span></td>

    </tr>
    </tbody>
    </table>

    "

    And after do that update the code :

    "
    </td></tr></tbody></table></div></div></div></div>

    "
    to this:

    "
    </td></tr></tbody></table></div></div></div>
    <div style="clear:both">&nbsp;</div>
    <table cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color:green;color:white;">
    <tbody>
    <tr>
    <td nowrap="" valign="top" align="center" class="Footer">
    <span style="text-decoration: none;color:white;" id="bbb">
    <a href="http://www.xmms3.com/sami/contactus.php">

    Contact Us

    </a>

    | <a href="http://www.xmms3.com/sami/aboutus.php">

    About Us

    </a> |
    <a href="http://www.xmms3.com/sami/privacy.php">

    Privacy Policy

    </a><br>

    <a href="http://www.answermefast.com"><strong>
    &copy; 2008-2009, xmms3.com, All Rights Reserved.
    </strong></a><br>An <a href="http://www.extremecow.com">Extreme Cow</a> Company.<br>Visit our newest addition, <a href="http://www.askmefast.com">AskMeFast</a>
    </span>
    </td>
    </tr>
    </tbody>
    </table>
    </div>

    "

    Now it will be working exactly as you want.
     
    viral2583, Oct 6, 2010 IP
  9. mrkool

    mrkool Active Member

    Messages:
    261
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    85
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #9
    Simple solution:

    Just paste in to your head section of your page, it will work in all pages of your website.
     
    mrkool, Oct 6, 2010 IP
  10. gapz101

    gapz101 Well-Known Member

    Messages:
    524
    Likes Received:
    8
    Best Answers:
    2
    Trophy Points:
    150
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #10
    hi,

    after the closing tag of
    <div id="middle">
    Code (markup):
    add this:
    <div style="clear:both;"></div>
    Code (markup):
     
    gapz101, Oct 7, 2010 IP
  11. RiptideSolutions

    RiptideSolutions Active Member

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    65
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #11
    Since none of these solutions seem to work, I will throw my offer out there to recode this without tables for the $25.
     
    RiptideSolutions, Oct 7, 2010 IP
  12. webnetsecure

    webnetsecure Active Member

    Messages:
    168
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #12
    The solution by shawnssj doesn't seem to work. Did you try this yourself? You can check the view source to see if I did it correctly but it still doesn't work. I am going to try the next solution while I am waiting for your response.
     
    webnetsecure, Oct 7, 2010 IP
  13. webnetsecure

    webnetsecure Active Member

    Messages:
    168
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #13
    It appears to me that gapz101 has also suggested the same solution (or am i missing something). The solution by mrkool might work (untested) but is really a work around not a solution and not everyone has javascript enabled.

    Riptidesolutions has shown me a working version of my web page but I still don't have instructions on what to add/change. Riptidesolutions if you have a solution why not post it!! You also offered to recode without tables. That might be a good idea, but we are in the middle of a beta test and cannot go back into development mode and possibly introduce other bugs.
     
    webnetsecure, Oct 7, 2010 IP
  14. webnetsecure

    webnetsecure Active Member

    Messages:
    168
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    58
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #14
    Can nobody fix this? Its driving me crazy. I am now doubling the reward to $50 !!!! The solution you post MUST be tested and cannot be a "work around". If you do NOT say I have TESTED this solution and it works you will not be selected as the winner even if your solution works! Sorry but it just seems like people are saying "try this" but it actually doesn't work and they didn't try it themselves first.
     
    webnetsecure, Oct 7, 2010 IP
  15. .3rok3n

    .3rok3n Well-Known Member

    Messages:
    383
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    135
    Digital Goods:
    1
    As Seller:
    100% - 1
    As Buyer:
    50.0% - 1
    #15
    OK i am doing it and will test it will let you know via pm or gonna pot it here as its not done yet..
     
    .3rok3n, Oct 7, 2010 IP
  16. gapz101

    gapz101 Well-Known Member

    Messages:
    524
    Likes Received:
    8
    Best Answers:
    2
    Trophy Points:
    150
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #16
    oh, can you put back the original file, it currently messed up
     
    gapz101, Oct 7, 2010 IP
  17. shawnssj

    shawnssj Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    13
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #17
    Well, after putting the code in through Firebug, I can assure you the solution I suggested functions fine. Other than that, gapz solution is just the same code in the wrong place. And all mrkools does is basically define a height of the document in some extremely meaningless way, which is EXACTLY what he tried earlier.

    That being said, the problem relies in using the clear:both tag displayed previously, along with positioning the footer in the correct place. I don't know how else I can help without just going in FTP to the site and changing the code for you...
     
    shawnssj, Oct 7, 2010 IP
  18. ActiveFrost

    ActiveFrost Notable Member

    Messages:
    2,072
    Likes Received:
    63
    Best Answers:
    3
    Trophy Points:
    245
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #18
    Change the last line of your code from:

    </td></tr></tbody></table></div></div></div></div></div></div>
    HTML:
    to ..

    </td></tr></tbody></table></div></div></div><div id="split" style="width: 100%; clear: both;"></div></div></div>
    HTML:
    If I'm the first one explaining it enough clear, kindly PM me and I'll reply back with my PayPal e-mail address :p Works like a charm.
     
    ActiveFrost, Oct 7, 2010 IP
  19. palmerlarryray

    palmerlarryray Active Member

    Messages:
    158
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    As Seller:
    100% - 1
    As Buyer:
    100% - 2
    #19
    You simply forgot to add an extra table to put everything within the wholebody box. I have attached a zip file with the corrected HTML file and a text file with the fix highlighted.

    View attachment myfix.zip
     
    palmerlarryray, Oct 7, 2010 IP
  20. viral2583

    viral2583 Well-Known Member

    Messages:
    352
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #20
    Hello,

    Have you tried my solution once? It is working fine. I have attached the file you can find my change(finding with nirav) there. Please check it.
     

    Attached Files:

    viral2583, Oct 7, 2010 IP