• Hello
    i want to wrap text around table . but i can not !
    im trying copy the table and text fro word 2010 but whene i pest it in wordpress the text be don the table ..
    please help me.

Viewing 10 replies - 1 through 10 (of 10 total)
  • You need to use CSS and HTML to control layout on a webpage – Word isn’t a good way to do anything in a website as it creates all kinds of horrible messy code.

    “Float” in the CSS is what makes text wrap around another element –

    http://www.w3schools.com/css/css_float.asp

    Thread Starter Raied F1

    (@raied-f1)

    can you help me with that bro
    i dont know how to use css ..
    what shoue i do to warp text around table ?

    Might be able to help, but I’d need to see the page you are asking about.

    BTW, not a “bro” :)!

    Thread Starter Raied F1

    (@raied-f1)

    ok sir i will pm you with data

    Thread Starter Raied F1

    (@raied-f1)

    can i send you email ? i dont want to post site name :/

    LOL – I meant that I’m female! (not bro or sir!)

    No, sorry we only offer help here. And it’s next to impossible to help with CSS without seeing the site, but see if this helps:

    You’ll need to add a class to the table’s HTML:

    <table class="mytable">

    ADD to custom CSS – if your theme doesn’t have it, use a plugin, and add this:

    table.mytable {
        float: left;
    }

    That will put the text on the right side.

    BTW, you might want to use a table plugin – don’t use Word if that’s what you are still doing.

    Thread Starter Raied F1

    (@raied-f1)

    oh sorry my bad 🙂 ..
    where to add <table class=”mytable”> ??

    That’s part of the table’s HTML – how are you creating the table?

    BTW, you might want to use a table plugin – don’t use Word if that’s what you are still doing.

    Thread Starter Raied F1

    (@raied-f1)

    im using to create the table via table press ..

    Cool, in that case, there should be an existing class or ID for the table – look at the generated HTML code and use that in the CSS.

    Or post a link to your site so I can see it.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘warp text around table’ is closed to new replies.