Reputation: 41
I use Action Text. When I place the image to text area, it places right. I don't know how place it to the center.
Upvotes: 0
Views: 66
Reputation: 29821
This is not exactly editable from the editor, so just add some styles:
/* app/assets/stylesheets/actiontext.css */
.trix-content .attachment img {
margin: 0 auto;
}
Upvotes: 0