mixtitan
10-06-2016, 08:40 AM
How this thread written in BBCODE ?


Dave999
10-06-2016, 08:59 AM
What? Can you rephrase that? Also, Ghost is a metal band as such forbidden here. Commercial music isn't allowed.

mixtitan
10-06-2016, 08:37 PM
What? Can you rephrase that? Also, Ghost is a metal band as such forbidden here. Commercial music isn't allowed.

I mean " text which locoted left side of picture"

when i write the code : shows like this

fixional
10-06-2016, 10:07 PM
I've seen this issue on other vBulletin sites and believe your only option is to use a 2 column table and put the picture in the left column and the text in the right column.



https://24.media.tumblr.com/fd5bd2458ad5c8c9d223b68edf9f8fb8/tumblr_mtn9z7VzCU1qb86cao1_500.gif
My text
in this box







https://24.media.tumblr.com/fd5bd2458ad5c8c9d223b68edf9f8fb8/tumblr_mtn9z7VzCU1qb86cao1_500.gif
My text
in this box

gururu
10-06-2016, 10:17 PM
Return to the page of the post, right-click on any element in the post, the image or the text, and from the contextual menu that pops up click "View Source" or "Inspect Element" or what have you. You'll then be presented with a page displaying the underlying HTML code, wherein you will be able to identify both the html and style code required to display the content of that post.

Presumably it's a table with 1 row and 2 columns, e.g.:



<table "width:100%, align:left">
<tr>
<td>image</td>
<td>IPSUM LOREM<hr></hr><ul style="margin: 0;padding:0;"><li style="list-style:none">ipsum lorem</li><li style="list-style:none">ipsum lorem</li><li style="list-style:none">ipsum lorem</li><li style="list-style:none">ipsum lorem</li></ul></td>
</tr>
</table>


�something like that.

Momonoki
10-07-2016, 01:23 AM
Or with HTML.

Using the img tag, add the attribute align="left"

fixional
10-07-2016, 09:39 PM
Or with HTML.

Using the img tag, add the attribute align="left"

Indeed! Good tip!