featured image centred

Posted in: Newsmag
Post count: 140

im using 600 width images for featured image …

when on post page the image its not centred …

Image and video hosting by TinyPic

need a fix … and i think this should be done by default without any css ( future updates )

thanks

Post count: 140

i managed to use this custom css and works …
is this the right way to do it ?

thanks

/*featured image center */
.td-post-content p, .mce-content-body p, .comment-content p {
margin-left: 16px;
}

.td-post-content img, .mce-content-body img {
margin-left: 16px;
}

Post count: 55

In you style.css edit line 4685 like this:

.td-post-content figure img, .mce-content-body figure img {
margin-bottom: 0px;
display: block;
margin-left: auto;
margin-right: auto;
}

Post count: 82

Never ever edit style.css. Always use custom CSS in admin panel. You will get a lot of headaches if you decide to update your theme 🙂

Post count: 7909

Hi,

Please use this custom css in Theme Panel > Custom Css: http://screencast.com/t/1IdWb0hVf

.td-post-featured-image .entry-thumb {
display: table;
margin-left: auto;
margin-right: auto;
}

Result: http://screencast.com/t/7IAer7zgw

Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newsmag’ is closed to new topics and replies.