Results 1 to 2 of 2

Thread: Text into pictures!?

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2008
    Posts
    1

    Text into pictures!?

    Hi! I got problems with put in text into the pictures! Or make the pictures to backgrounds.

    Its totally problem and i would want help just on the site!
    I would be happy if you could write the whole code or got any ideas if i can use microsoft word in anyway to get in text and then got the HTML code (its also open microsoft word if i right click and press edit! but when i press open in NotePad i got the source code!)

    Well i've try with TD background etc but i don't get it to work and this hardly start piss me off!
    I have ask 100 of peoples all just spam i need to teach me all codes in CSS or HTML and i have no patience to teach me over 1 milljards codes just to know how to put in texts into my site.


    Heres the site i need help with
    http://www.freewebs.com/test32000/index.html

    Here's the source code
    Code:
    <html>
    <head>
    <center>
    <noscript></noscript><!-- --><script src="http://www.freewebs.com/p.js"></script><script>alert('Hello and Welcome')</script>
    <title>Untitled-1</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (Untitled-1) -->
    <table id="Table_01" width="600" height="600" border="0" cellpadding="0" cellspacing="0">
    	<tr>
    		<td colspan="2">
    
    <img src="DragonHealeds_01.gif" width="600" height="163"></td>
    	</tr>
    	<tr>
    		<td>
    
    			<img src="DragonHealeds_02.gif" width="131" height="437" alt=""></td>
    		<td>
    			<img src="DragonHealeds_03.gif" width="469" height="437" alt=""></td>
    	</tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>

    And i would be happy if someone was edit this code and write text into the boxes! (into the 02 and 03 pictures! 02 is also the menu and 03 is the text im gonna write there..)

  2. #2
    Junior Member
    Join Date
    Nov 2007
    Posts
    22

    Re: Text into pictures!?

    If I understand your problem right, then what you might try is something like
    Code:
    <table width="600" align="center" cellpadding="0" cellspacing="0" border="0">
    <tr>
       <td width="100% align="center" valign="top">
          <table width="600" height="163" align="center" cellpadding="0" cellspacing="0" border="0">
          <tr>
             <td background="DragonHealeds_01.gif" width="100%">.</td>
          </tr>
          </table>
          <table width="600" height="437" cellpadding="0" cellspacing="0" border="0">
          <tr>
             <td background="DragonHealeds_02.gif" width="131" align="center" valign="top">         
                <a href="#link1">link 1</a><br>
                <a href="#link2">link 2</a><br>         
             </td>
    	   <td background="DragonHealeds_03.gif" width="469" align="center" valign="top">
                <p style="text-align: left; padding: 5px">some text</p>
             </td>
          </tr>
          </table>
       </td>
    </tr>
    </table>
    I'm not that into basic html, so there's likely better ways... hopefully, that or some variation will help you out. If that isn't what you need / want, then try a wysiwyg type of program.

    Good luck

Posting Permissions

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



Click Here to Expand Forum to Full Width