• This has got to be really simple, but the solution is escaping me. All I want to do is make the rows vertically aligned to “top”. And while I’m in there, I’d like to make the text left aligned.

    Here’s my page: http://familywebwatch.com/blog_test/test-for-plugins/

    I’ve added <tr valign="top"> to the pluginsusedPlugins page. What am I doing wrong? Do I need to modify my css?

Viewing 3 replies - 1 through 3 (of 3 total)
  • I would guess that valign is not valid for xhtml, and that you should be doing this using stylesheets instead. style=”vertical-align: top;” is probably more like it.

    (Again, only a guess. But it’d be worth a try.)

    dan

    Thread Starter davincim

    (@davincim)

    That did it! I just added to my styles:

    .plug tr {
    vertical-align:top;
    text-align: left;
    }

    And then inserted a div class=”plug” into the plugin file. Looks a lot better now.

    Thanks, danwalker! 🙂

    Perhaps my skillz aren’t as rusty as I thought. 🙂

    Glad to have been of help.

    dan

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Why won’t my table obey me!?’ is closed to new replies.