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
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” :)!
ok sir i will pm you with data
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.
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.
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.