Activity Stream
48,167 MEMBERS
6908 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 9 of 9

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Member
    Website's:
    joshpotter.com explosivegfx.com

    Default Need some HTML help

    Hey,

    I want to put this box at the bottom of my site:

    http://www.explosivegfx.com

    However I can't and whenever I try it always goes to the right, what should I do?

    Regards,

    Josh

    P.S. The html for the box is:

    Code: 
    <table border="1" align="center" cellspacing="1" id="ll"><tbody>
    <tr class="bold">
    <td><a target="_blank" href="http://www.explosivegfx.com/" title="Explosive GFx - Homepage"><small><b>Home Page</b></small></a></td>
    <td><a target="_blank" href="http://www.explosivegfx.com/blog" title="Explosive GFx - Blog"><small><b>Blog</b></small></a></td>
    <td><a target="_blank" href="http://www.explosivegfx.com/forum" title="Explosive GFx - Forum"><small><b>Forum</b></small></a></td>
    <td><a target="_blank" href="http://www.twitter.com/ExplosiveGFx" title="Explosive GFx -  Twitter"><small><b>Twitter</b></small></a></td>
    <td><b>Link here</b></td>
    </tr>
    <tr>
    <td> Link here</td>
    <td>Link here</td>
    <td> Link here</td>
    <td>Link here</td>
    <td><a href=http://www.explosivegfx.com/forum/affiliates.php title="Other Affiliates"><small><b>Other Affiliates</b></small></a></td>
    </tr>
    </tbody></table>
    nut legend Reviewed by nut legend on . Need some HTML help Hey, I want to put this box at the bottom of my site: http://www.explosivegfx.com However I can't and whenever I try it always goes to the right, what should I do? Regards, Rating: 5

    Trusted List: CyberJ37, User12399, ak47, ToXiNs, BadBoy
    Non Trusted (scammers): WarezPimp

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    Plutost.com OffshorePort.net Desi-Mobilez.com PhotoshopDesigner.co.uk TutsBy.me BabesWallpapers.net
    Ohh Sorry !
    I have made a mistake lol
    I thought you needed help on the forum....
    =====
    Well do this
    <table border="1" align="center" valign="bottom" cellspacing="1" id="ll"><tbody>
    ===
    Also it might be caused if you are placing this Link Box in one of the tables with those Banners.
    So probably include a Break and then insert your Link Box code.

    And I would suggest you to do XHTML & CSS Valid because you are learning Web Designing though
    Plutost.com Asia & Europe Hosting Provider / Offshore Shared/VPS Hosting / Even Better than Gold
    WHMCS License Verify (Catch those scam hosts)
    Tutorials By .Me

  4.     
    #3
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    its probably because you are inserting that table code in a container that is right-justified.

  5.     
    #4
    Member
    put above code in <center></center>

  6.     
    #5
    Respected Developer
    Website's:
    PlatinumW.org NexusDDL.com HD-United.org CheckLinks.org FLVD.org
    None of the above things will work, you are using a CSS based design, and trying to put tables in it, what you do need todo, is create a div container, and put your table code in it, and give div container specific id/class and set the appropriate position with the help of CSS. You can look at your logos/boxes for example.

  7.     
    #6
    Member
    lol I fail, guess I should look at site before opening my mouth

  8.     
    #7
    Respected Developer
    Arg. Couldn't resist. Your table was outside of </body> and you forgot to apply a float value and put it into a new parant container of 100% width. Being a fan of standards I'd also point to the fact that your HTML was cool back in 94. What I mean is that you should at least try to keep to the W3C standards.

    Anyway, your 'fixed' HTML:
    PHP Code: 
    <!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" xml:lang="en" lang="en"
    <
    head><title>Explosive GFx Portal</title
    <
    meta name="description" content="Explosive GFx Portal" /> 
    <
    link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> 
    <
    meta http-equiv="imagetoolbar" content="no" /> 
    <
    style type="text/css"
    body{
        
    background:#000 url(http://i44.tinypic.com/2iroi74.png) repeat-x top center;
        
    padding:0;
        
    margin:0;
        
    height:100%;
        
    font-size:13px;
        
    font-family:Verdana,Helvetica,sans-serif;
        
    color:#fff;
        
    text-align:center;
        
    cursor:default;
        
    height:100%;
        
    background-imageurl();
        
    background-color#D5DfeD;
    }
    .
    content{
        
    width:660px;
        
    margin:0 auto;
    }
    h1{
        
    display:none;
    }
    h1,h2{
        
    margin:0;
    }
    img{
        
    border:0;
    }
    .
    logo{
        
    display:block;
        
    margin-top:8px;
    }
    .
    options{
        
    margin:10px 0 40px;
    }
    .
    options a{
        
    float:left;
        
    width:316px;
        
    height:106px;
        
    border:2px solid #2d2d2d;
        
    margin:5px;
        
    background-image:url(http://i412.photobucket.com/albums/pp207/nutlegend/boxes2.jpg);
        
    background-repeat:no-repeat;
    }
    .
    options a:hover{
        
    border:2px solid #ccc;
    }
    .
    options a:active{
        
    border:2px solid #ff0000;
    }
    .
    clear{
        
    clear:both;
    }
    .
    options a span{
        
    display:none;
    }
    .
    options #ubb{
        
    background-position:1px 0;
    }
    .
    options #md{
        
    background-position:-318px 0;
    }
    .
    options #b{
        
    background-position:-108px;
    }
    .
    options #cs{
        
    background-position:-318px -108px;
    }
    .
    options #cs{
        
    background-position:-216px;
    }
    .
    options #cs{
        
    background-position:-318px -216px;
    }
    .
    style1 {color#000000}
    .style2 {color#DFE8F7}
    </style
    <
    base target="_blank" /> 
    <
    meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head
    <
    body
    <
    div class="content"
    <
    h1>Explosive GFx Network</h1
    <
    a href="http://www.explosivegfx.com" target="_self" class="logo"><a href="http://www.explosivegfx.com" target="_self" class="logo"><img src="http://i42.tinypic.com/dphg1s.png" alt="" width="293" height="265" /></a
    <
    div style="padding:0px 0 5px;"><span class="style1">ExplosiveGFx.Com</span><br /> 

    <
    div style="color:#666666; font-size:10px; padding-top:2px;">Everything You Will Need For GFx!</div
    </
    div
     
    <
    div class="options"
    <
    h2><a href="forum" id="ubb"><span>forum</span></a></h2
    <
    h2><a href="blog" id="md"><span>blog</span></a></h2
    <
    h2><a href="http://www.twitter.com/ExplosiveGFx" id="b"><span>http://www.twitter.com/ExplosiveGFx</span></a></h2> 
    </div

    </
    div

    <
    div style="width:100%;float:left;margin-top:50px;">
    <
    table border="1" align="center" cellspacing="1" id="ll"><tbody>
    <
    tr class="bold">
    <
    td><a target="_blank" href="http://www.explosivegfx.com/" title="Explosive GFx - Homepage"><small><b>Home Page</b></small></a></td>

    <
    td><a target="_blank" href="http://www.explosivegfx.com/blog" title="Explosive GFx - Blog"><small><b>Blog</b></small></a></td>
    <
    td><a target="_blank" href="http://www.explosivegfx.com/forum" title="Explosive GFx - Forum"><small><b>Forum</b></small></a></td>
    <
    td><a target="_blank" href="http://www.twitter.com/ExplosiveGFx" title="Explosive GFx -  Twitter"><small><b>Twitter</b></small></a></td>
    <
    td><b>Link here</b></td>
    </
    tr>
    <
    tr>
    <
    tdLink here</td>
    <
    td>Link here</td>
    <
    tdLink here</td>

    <
    td>Link here</td>
    <
    td><a href="http://explosivegfx.com/forum/affiliates.php" title="Other Affiliates"><small><b>Other Affiliates</b></small></a></td>
    </
    tr>
    </
    tbody></table>
    </
    div>

    </
    body

    </
    html

  9.     
    #8
    Member
    Website's:
    joshpotter.com explosivegfx.com
    Quote Originally Posted by Hyperz View Post
    Arg. Couldn't resist. Your table was outside of </body> and you forgot to apply a float value and put it into a new parant container of 100% width. Being a fan of standards I'd also point to the fact that your HTML was cool back in 94. What I mean is that you should at least try to keep to the W3C standards.

    Anyway, your 'fixed' HTML:
    PHP Code: 
    <!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" xml:lang="en" lang="en"
    <
    head><title>Explosive GFx Portal</title
    <
    meta name="description" content="Explosive GFx Portal" /> 
    <
    link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> 
    <
    meta http-equiv="imagetoolbar" content="no" /> 
    <
    style type="text/css"
    body{
        
    background:#000 url(http://i44.tinypic.com/2iroi74.png) repeat-x top center;
        
    padding:0;
        
    margin:0;
        
    height:100%;
        
    font-size:13px;
        
    font-family:Verdana,Helvetica,sans-serif;
        
    color:#fff;
        
    text-align:center;
        
    cursor:default;
        
    height:100%;
        
    background-imageurl();
        
    background-color#D5DfeD;
    }
    .
    content{
        
    width:660px;
        
    margin:0 auto;
    }
    h1{
        
    display:none;
    }
    h1,h2{
        
    margin:0;
    }
    img{
        
    border:0;
    }
    .
    logo{
        
    display:block;
        
    margin-top:8px;
    }
    .
    options{
        
    margin:10px 0 40px;
    }
    .
    options a{
        
    float:left;
        
    width:316px;
        
    height:106px;
        
    border:2px solid #2d2d2d;
        
    margin:5px;
        
    background-image:url(http://i412.photobucket.com/albums/pp207/nutlegend/boxes2.jpg);
        
    background-repeat:no-repeat;
    }
    .
    options a:hover{
        
    border:2px solid #ccc;
    }
    .
    options a:active{
        
    border:2px solid #ff0000;
    }
    .
    clear{
        
    clear:both;
    }
    .
    options a span{
        
    display:none;
    }
    .
    options #ubb{
        
    background-position:1px 0;
    }
    .
    options #md{
        
    background-position:-318px 0;
    }
    .
    options #b{
        
    background-position:-108px;
    }
    .
    options #cs{
        
    background-position:-318px -108px;
    }
    .
    options #cs{
        
    background-position:-216px;
    }
    .
    options #cs{
        
    background-position:-318px -216px;
    }
    .
    style1 {color#000000}
    .style2 {color#DFE8F7}
    </style
    <
    base target="_blank" /> 
    <
    meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head
    <
    body
    <
    div class="content"
    <
    h1>Explosive GFx Network</h1
    <
    a href="http://www.explosivegfx.com" target="_self" class="logo"><a href="http://www.explosivegfx.com" target="_self" class="logo"><img src="http://i42.tinypic.com/dphg1s.png" alt="" width="293" height="265" /></a
    <
    div style="padding:0px 0 5px;"><span class="style1">ExplosiveGFx.Com</span><br /> 
     
    <
    div style="color:#666666; font-size:10px; padding-top:2px;">Everything You Will Need For GFx!</div
    </
    div
     
    <
    div class="options"
    <
    h2><a href="forum" id="ubb"><span>forum</span></a></h2
    <
    h2><a href="blog" id="md"><span>blog</span></a></h2
    <
    h2><a href="http://www.twitter.com/ExplosiveGFx" id="b"><span>http://www.twitter.com/ExplosiveGFx</span></a></h2> 
    </div
     
    </
    div
     
    <
    div style="width:100%;float:left;margin-top:50px;">
    <
    table border="1" align="center" cellspacing="1" id="ll"><tbody>
    <
    tr class="bold">
    <
    td><a target="_blank" href="http://www.explosivegfx.com/" title="Explosive GFx - Homepage"><small><b>Home Page</b></small></a></td>
     
    <
    td><a target="_blank" href="http://www.explosivegfx.com/blog" title="Explosive GFx - Blog"><small><b>Blog</b></small></a></td>
    <
    td><a target="_blank" href="http://www.explosivegfx.com/forum" title="Explosive GFx - Forum"><small><b>Forum</b></small></a></td>
    <
    td><a target="_blank" href="http://www.twitter.com/ExplosiveGFx" title="Explosive GFx -  Twitter"><small><b>Twitter</b></small></a></td>
    <
    td><b>Link here</b></td>
    </
    tr>
    <
    tr>
    <
    tdLink here</td>
    <
    td>Link here</td>
    <
    tdLink here</td>
     
    <
    td>Link here</td>
    <
    td><a href="http://explosivegfx.com/forum/affiliates.php" title="Other Affiliates"><small><b>Other Affiliates</b></small></a></td>
    </
    tr>
    </
    tbody></table>
    </
    div>
     
    </
    body
     
    </
    html
    Thanks so much! You really are a life saver

    Regards,

    Josh

    Trusted List: CyberJ37, User12399, ak47, ToXiNs, BadBoy
    Non Trusted (scammers): WarezPimp

  10.     
    #9
    Respected Developer
    My pleasure m8.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. html and css help
    By tractor3231 in forum Web Development Area
    Replies: 7
    Last Post: 5th Sep 2011, 08:42 AM
  2. PSD to HTML
    By ddlshack in forum Graphics Area
    Replies: 1
    Last Post: 26th May 2011, 11:07 AM
  3. PSD to PHP/HTML?
    By .:Jamie:. in forum Web Development Area
    Replies: 8
    Last Post: 1st Mar 2011, 08:17 AM
  4. Replies: 8
    Last Post: 21st Jul 2010, 06:13 PM
  5. HTML help
    By n4pst3r in forum Server Management
    Replies: 5
    Last Post: 30th Mar 2010, 09:38 AM

Tags for this Thread

BE SOCIAL