Topic-icon Easy Tags button not aligned

Active Subscriptions:

None
9 years 5 months ago #60550 by joomleb
Hi guys,
following the Easy Tags documentation page I added buttons into my article page content here , but, despite I write all in one line in my content editor the buttons are always shown below of the words.

Please, How to have buttons on the same line with the words, like part of the phrase ?
The topic has been locked.
Support Specialist
9 years 5 months ago #60551 by mel
Replied by mel on topic Easy Tags button not aligned
You can add a style like the following and then just arrange the easy-tags in the right place in the content:
div.item-page div.sourcecoast {
float: left;
margin-right: 5px;
}

-Melissa
The topic has been locked.
Active Subscriptions:

None
9 years 5 months ago #60552 by joomleb
Hi Melissa,
thanks for suggestion, I tested it adding the code to my custom.css template file. But seem to not be the solution geerating a lot of stranges behaviors,
I'm looking for a way to insert "buttons" in the phrases, in the same words line.
So, obtain a result like:

"Go and click [Like Facebook button] on our Facebook page"

But rigt now seem to work like:

"Go and click
[Like Facebook button]
on our Facebook page"
The topic has been locked.
Support Specialist
9 years 5 months ago #60553 by mel
Replied by mel on topic Easy Tags button not aligned
Yes, it will be a combination of divs and styles, like the following:

Here's the article content:
<div class="testDiv"><div>Go and click</div>{JFBCLike}<div>on our Facebook page</div></div>

Here's the style:
.testDiv div {
float: left;
}
The topic has been locked.