• Resolved cableghost

    (@cableghost)


    How do I reproduce the valign format in WP? I scraped content from a HTML site and placed it into a WP Page.

    I realized this is not the ideal way to build a WP Page, but I just don’t have the time and expertise to do a complete conversion, so…

    Is there a command/code I can add to get WP to recognize valign in some format?

    -Scott

Viewing 7 replies - 1 through 7 (of 7 total)
  • td {vertical-align: foo;}

    where foo = top, bottom or middle

    Thread Starter cableghost

    (@cableghost)

    thank you!

    -Scott

    Does this go in the CSS? I have created a form with various <input fields> and, although it looks fine in the FrontPage preview, when I view it on the client WP site, the row height is all screwed up. I have tried every HTML code I can think of on the page itself, but nothing works. Doesn’t WP recognize basic HTML like valign=right or rowheight?

    Appreciate any help. I am stumped.

    Page can be viewed at PalmTravelPanama.com. Click on Get A Quote – English.

    @esmi

    <td vertical-align=”foo”> doesnt work. does it need to be in the CSS such as:

    td.fudgepress {
    vertical-align: foo;
    }

    and then in the HTML as:

    <td class=”fudgepress”>

    the inline tag is not working

    bingo. that worked

    I have the same problem and kinda realized it has to be a css thing.

    Where do I put the

    td {vertical-align: top;}

    ???

    I mean, in which part of the css do I put it? I am using wordpress 2.9.2 and buddypress with modified default theme.

    Any help appreciated!

    mmumby

    (@mmumby)

    A bit of inline CSS directly in the table html also works.

    <td style=”vertical-align: middle;”>

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Valign and other Table Formatting’ is closed to new replies.