Vladimir Lozitskiy
Vladimir Lozitskiy

Reputation: 41

how to place an image to center?

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.enter image description here

Upvotes: 0

Views: 66

Answers (1)

Alex
Alex

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

Related Questions