[Dave Thomas]: > After the resounding success of yesterdays imagemap please, another > HTML puzzler. Anyone know how to stop Konqueror whiting-out pars of > method names: I believe it is the padding in the .methodtitle style of the <a> tag that confuses Konqueror. The white-out is apparantly a strange attempt at "padding". You can fix it by using different styles for the table and anchor elements: td.methodtitle { font-size: medium; text_decoration: none; padding: 3px 3px 3px 20px; color: #0000AA; background: white; } a.methodtitle { font-size: medium; text_decoration: none; color: #0000AA; background: white; } // Niklas