Link to home
Start Free TrialLog in
Avatar of -Shadow-
-Shadow-

asked on

tag right???

well i got this line

<td COLSPAN="2">Français | English | Login | Sign-up <P ALIGN="RIGHT"> Archives : News | Update</P></td>

but it change line  , i want archives... to be on right of my screen but presently it change line and i dont want that i want everything to be on the same line
Avatar of Dean OBrien
Dean OBrien
Flag of United Kingdom of Great Britain and Northern Ireland image

<tr>
<td width="50%">
<p align="left">Français | English | Login | Sign-up</p>
</td>
<td width="50%">
<p align="right">Archives : News | Update</td>
</tr>

Instead of merging the two cells together, use them to seperate the content.

Easynow
Would be helpful to see the rest of the table, that the code came from.  To give the best answer.
Avatar of -Shadow-
-Shadow-

ASKER

the problem is that my following cells doesnt like the width=50% once i use that my width="100" nowrap doesnt count anymore . Any idea why ?

<tr>
  <td width="100" nowrap>
      <h4>News</h4>
  </td>
 <td>
        hi
 <td>
</tr>
ASKER CERTIFIED SOLUTION
Avatar of seanpowell
seanpowell
Flag of Canada 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
tnx it worked great
No problem - glad to help :-)