I have some text in tables within a WebTab that are not displaying correctly in Chrome or FF but looks fine in IE.
http://www.lucindagreenphd.com/Books.aspx
Is there a fix for this?
thanks
Hi bobthomason,
Tha content into the tab is not diplayed correctly on that row which contains pictuire and description of the book if I understand it right?
The problem comes from the row and table data that contains Detailed description as in that table row there is only one td and it takes the width of the whole table, but the row with the image contains two td and it tries to allign the description td next to detailed description td, that why it hides that way.
My suggestion is to create table into that tr, which contains both the image and the description. I've tried it with FF4 and Chrome and works fine. Here is an example from your site:
<tr><td><table> <tbody><tr><td> <img src="images/Pathway_to_freedom_sml.jpg"> </td> <td class="smNormal" valign="top"> Pathway includes teachings on the Four Noble Truths, the Eightfold Path, the Four Divine Abidings of Loving-Kindness, Compassion, Sympathetic Joy and Equanimity, as well as reflections on Awareness vs. Insight, Dissolving Duality, and an original Map of Practice outlining the highs and lows, pitfalls, challenges and insights you are likely to encounter in a long term spiritual practice.<br> </td> </tr></tbody></table></td></tr>
Hope that will help
Thanks for your help, Todor, It looks like the table will fix it.