Layout troubles...X_x

  • 12,504
    Posts
    21
    Years
    • Seen Mar 13, 2022
    OK, JA gave me the HTML for making my own layouts before, but now I'm confused on where to put my banner...

    Jedi_Amara said:
    <table align="center" cellpadding="0" class="border">
    <tr>

    <td width="100" style="background-image:url(nav.gif)" summary="nav">Blah</td>

    <td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>

    <td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
    </tr>

    </table>


    You can see my layout here .
     
    If you want it to look like that, do it like this:

    Code:
    <table align="center" cellpadding="0" class="border">
    <tr>
    
    <td width="100" style="background-image:url(nav.gif)" summary="nav" rowspan="2">Blah</td>
    
    <td width="800" colspan="2">Insert banner here</td>
    
    </tr>
    <tr>
    <td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>
    
    <td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
    </tr>
    
    </table>

    But keep in mind I didn't actually test that, so it might not work properly.
     
    Sorry to double post, if RMW didn't post before me....


    Can someone take my image and make into a layout for me...PLEASE? You can see my failed attempt at pokejungle.shyper.com/pes.html don't expect anything much.
     
    I don't see any layout there, pj. :P

    Anyway, I could try it, after LOTR is over on WB. XD
    I'm trying to get some layout experience anyway.
     
    I am too >_>

    That's the point though, the layout theoretically SHOULD show up, but it doesn't...~_~
     
    Code:
    <table border="3" cellspacing="10" width="750">
    <tr>
    <td rowspan="3">
    Left Nav
    </td>
    <td>Banner</td>
    </tr><tr>
    <td>Content and Such</td>
    </tr><tr>
    <td>Copyright and Such</td>
    </tr>
    </table>
    Basic Table for that. Edit colors and such.
     
    To make the code you already have into a layout, put a border on the table... add border="1" to it.
     
    o_O You could try one of my new free layouts... I would do your image for you but my school now blocks Photobucket so I can't see the image.
     
    Code:
    <table align="center" cellpadding="0" border="1">
    <tr>
    
    <td width="100" style="background-image:url(nav.gif)" summary="nav" rowspan="2">Blah</td>
    
    <td width="800" colspan="2">Insert banner here</td>
    
    </tr>
    <tr>
    <td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>
    
    <td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
    </tr>
    
    </table>
     
    ON the insert banner here do I just put the URL? It didn't work last time....=/
     
    No, you put <img src="filename of banner">
     
    You should take a quick look at a basic HTML tutorial if you make websites. ^^ I started out for the first two years of making websites without knowing any HTML, that's why my early sites were so bad. :P I used WYSIWYG only.
     
    Back
    Top