Hi there! I'm having a little problem with sites that excessively make use of "nowrap" tags, like <http://futurezone.orf.at> I toyed with limit_text_width (quote from dillorc: # Set this to YES, if you want to limit the word wrap width to the vieport # width (may be useful for iPAQ) limit_text_width=YES ), but I noticed that this option doesn't work as I would have expected, because it doesn't force wrapping here (nowrap). Now I think in the context of this dillorc remark, it might be a good idea to override 'nowrap' when limit_text_width is wanted. Am I cruelly breaking standards, or would that make sense? Please have a look at the above site with limit_text_width=YES, and then with the below patch. Thanks for your fantastic work, n. --- src/html.c.orig 2003-03-10 22:04:45.000000000 +0100 +++ src/html.c 2003-03-10 22:10:21.000000000 +0100 @@ -1398,7 +1398,7 @@ style_attrs = *old_style; if (!html->stack[html->stack_top].cell_text_align_set) style_attrs.text_align = text_align; - if (Html_get_attr(html, tag, tagsize, "nowrap")) + if ((Html_get_attr(html, tag, tagsize, "nowrap")) && (!prefs.limit_text_width)) style_attrs.nowrap = TRUE; else style_attrs.nowrap = FALSE;