Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

IS it possible to force text width to some amount of pixels (or percentage of screen) under makedoc2

 [1/2] from: gerardcote::sympatico::ca at: 11-Aug-2005 23:12


Hi list, I am trying to publish to the Web some tutorial using makedoc2 but the width is much too large when compared to some material published by Carl on the official rebol web site. Can someone tell me if there is a way to limit the output width to some number of pixels (fixed) or to some percentage of the display? How can I do this? Thanks, Gerard

 [2/2] from: SunandaDH::aol::com at: 13-Aug-2005 10:47

Re: IS it possible to force text width to some amount of pixels (or p...


Gerard:
> Can someone tell me if there is a way to limit the output width to some > number of pixels (fixed) or to some percentage of the > display? How can I do this?
In most modern browsers this should work: Add this to your CSS: html {max-width: 800px;} * {max-width: 800px;} (The first line alone should be good enough. The 2nd is for luck). Sunanda