Link to home
Start Free TrialLog in
Avatar of Gemini532
Gemini532Flag for United States of America

asked on

Wrap text around an applet

Hello Everyone.
I would like my text to be on the right  and the picture on the left and the text should wrap around the picture.  There's a LOT of text way more than the picture, but for a short cut I just wrote "blah blah..."
Can you help?  I tried to do this by adding a div but it didn't work...

<td valign = "top">  
<p>
blah blah...</p><p>
blah blah...</p>

<div style="float: left; padding-right: 10px; padding-bottom: 10px; padding-top: 10px;">
<APPLET>
<PARAM NAME=blah">
********more applet code to create a slide show of 3 pictures*******
<BLOCKQUOTE>
<HR>
Your browser is not Java capable or Java has been disabled.
<HR>
</BLOCKQUOTE>
</APPLET></div>
</td>
Avatar of Javatm
Javatm
Flag of Singapore image

The simplest way is to create a table and add to columns put the label on the right while the picture or applet on the left side ;)

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<table width="800" border="0">
  <tr>
    <td>Text Demo </td>
    <td>Your Picture or Applet Goes Here</td>
  </tr>
</table>
</body>
</html>
Avatar of Gemini532

ASKER

But if I do that, the text won't wrap around the pictures...
After the picture ends, there's more text and I want this to wrap around the picture, which is really an applet
Avatar of Mick Barry
be better aksed in the html or css, its not really a java question.
I thought applets had special attributes/properties different than HTML
They're very difficult, all these properties that work for everything else, do not work for them...
:(
Aren't you jusy concerned about the text *around* the applet?
ASKER CERTIFIED SOLUTION
Avatar of Javatm
Javatm
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial