Hi, Jools On 12-Oct-01, you wrote: > Hello, > 2nd paragraph gets centered on voyager but it should not! > <p align="center">I should be Centered > <p>But I SHOULD NOT!!! > Regards > buzz
It gets centered because your HTML is invalid. Every tag in HTML is supposed to have an ending tag. Your <P> tags don't. The following code (yours, modified) with the proper ending tags gets rendered correctly with Voyager 3.3.117: <P ALIGN="CENTER">This should be centered.</P> <P>This should not be.</P> Regards -- |=======================================================================| | Michael Rye | Amiga 4000 Desktop, CyberStorm MK-III 060/50 MHz | |UNIX/DBA/C/HTML/Java| CyberVision PPC, 146 Meg RAM, 4 & 2 Gig HDs | | Team AMIGA | 2 Ariadne-II cards, NetGear EN104TP Hub | | [EMAIL PROTECTED] | NEC 16X SCSI-II CD-ROM, Seagate TapeStor 8000 | |=======================================================================| | This space intentionally left blank. | |=======================================================================| _____________________________________________________________________ Voyager Mailing List - http://v3.vapor.com/ Voyager FAQ....: http://faq.vapor.com/voyager/ Listserver Help: mailto:[EMAIL PROTECTED]?Subject=HELP Unsubscribe....: mailto:[EMAIL PROTECTED]?Subject=UNSUBSCRIBE
