2015-06-10, 15:50:56
(2015-06-10, 01:09:04)stwneu Wrote: Hey Guys, is it possible to make the excerpts look like this: thumbnail on the left, excerpt on the right (instead of thumbnails being located on top of the excerpts)? If yes, how can I do this?
Post elements have classes (.nm_post_title, .nm_post_image, etc.) that you can style (and position) with CSS.
Like here: http://webs.org.es/newsmanagerdemo/news/
where I added these to the CSS stylesheet:
Code:
.nm_post_image a { float:left; margin-right:14px; margin-top:12px } /* styling "a", so that it isn't applied to single post view */
.nm_post_date { margin:4px 0; }
.nm_post_title { margin:16px 0 4px 0; color:black; }
.nm_post { clear:both; padding:10px 0; }
Another way to do this, if your template is built on Bootstrap or other CSS framework, is defining custom markup and class selectors for layout in NM Custom Settings.
http://www.cyberiada.org/cnb/news-manager-c/
For example, Oleg06 used something like this in one of his test sites based on Bootstrap:
Code:
classPost row margin-bottom-20
classPostTitle col-md-12
classposttitlelink text-danger
classPostDate col-md-6
classPostAuthor col-md-6 text-right
classPostImage col-md-3
classPostContent col-md-9 clearfix
classReadmore center-block text-right
classReadmoreLink btn btn-primary
classPostTags col-md-12