not an urgent incident
I saw this table running out of boundaries due to an extremely long title of the photo (red box)
the formatting of the screen went into funny widescreen mode x-) (blue boxes)
maybe this can be fixed by an automatic word wrapping function for the length of the title...
______________________
seen on IE 6.0 on Win 2000
I think I saw this also with Firefox on WinVista
This photo has notes. Move the mouse over the photo to see them.
Send a message
Search for members



assbachpro says:
mabye show only x chars of the title + "..."
truncate title ... not sure if overflow:hidden helps in this case.
Wiki Tangopro says:
Extracts a specified number of the leftmost characters in a string.
Syntax
Left[$] ( expr , n )
Elements
expr
Any numeric or String expression for Left; and any Variant or String expression for Left$. If expr is numeric, LotusScript converts it to a string before performing the extraction.
n
The number of characters to be returned.
Left(title, 30) & "..."
or something like this could be a solution
and yes you can combine it with a condition
if length(title) > 30 then
=o)
vegitill says: