Results 1 to 6 of 6

Thread: Quick dab of HTML help

  1. #1
    Junior Member
    Join Date
    Sep 2004
    Posts
    13

    Quick dab of HTML help

    Please see attached image.

  2. #2
    Elite Hacker
    Join Date
    Mar 2003
    Posts
    1,407
    Code:
    <html>
    <head>
    <title>blah</title>
    </head>
    <body>
     <table width="100%" border="1">
        <tr> 
            <td align="center" colspan="2" width="100%"> 
              <img src="images/banner.jpg" alt="banner">
            </td>
        </tr>
        <tr> 
            <td align="center" width="15%" height="600px"> 
    	  blah
            </td>
            <td align="center" width="85%" height="600px">
    	  blah
            </td>
        </tr>
    </table>
    </body>
    </html>
    Kind of sloppy but that should get you started. Peace.

  3. #3
    Junior Member
    Join Date
    Sep 2004
    Posts
    13
    Maybe I should have been more specific. Thanks for you help, but i'm not that retarded. I know that much.

    If you would so kindly direct your attention to the top right part of the image. How do I make the image "go over top of" the content bar? Would layers work with all browsers?

  4. #4
    Elite Hacker
    Join Date
    Mar 2003
    Posts
    1,407
    I think I see now, I'm sorry. Work on your drawing skills :P. j/k.
    Code:
    <html>
    <head>
    <title>blah</title>
    <style type="text/css">
    	img.main {
    		position: absolute;
    		top: 300px;
    		left: 520px;
    	}
    </style>
    </head>
    <body>
     <table width="100%" border="1">
        <tr> 
            <td align="center" colspan="2" width="100%"> 
              <img src="images/banner.jpg" alt="banner">
            </td>
        </tr>
        <tr> 
            <td align="center" width="15%" height="600px"> 
    	blah
            </td>
            <td align="center" width="85%" height="600px">
    	<img src="images.jpg" class="main">
            </td>
        </tr>
    </table>
    </body>
    </html>
    more like that? And to move it around change the amount of pixels from the top and left within the style thing.

  5. #5
    Senior Member
    Join Date
    Dec 2003
    Location
    LA, CA
    Posts
    292
    A mind full of questions has no room for answers

  6. #6
    Junior Member
    Join Date
    Sep 2004
    Posts
    13
    heretic! Thanks! one more question.

    http://tppblog.com/personal/

    See the part that shows the 'news'? I want to have an image in the BOTTOM RIGHT HAND CORNER of that content table. how do I do this? (I don't want the position to be absolute, it needs to move with the table)

    Actually - changed my mind. And figured out how to do what I wanted to do. (Notice the cute wittle tuxxy wuxxy in the title bar ) ;-P

Posting Permissions

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