Hello @fpierik,
Thanks for writing in!
The post meta can be turn OFF. You can do it by going to X > Theme Options > Blog > Content > Post Meta.
For the title, we do not have any option settings to disable the post title. You can only use CSS code into X > Theme Options > CSS . You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use.
The post titles were using .x-iso-container-posts.cols-3 .entry-title and you can use this class to formulate your custom css.
There are two options you can have:
1.) Hide the post titles completely by using the display: none; in the custom css. With this example code using the class above:
.x-iso-container-posts.cols-3 .entry-title {
display: none;
}
To learn more about the CSS display property and how it works, please check this out:
2.) Instead of hiding the post title, you can just truncate it so that you will have a truncated one liner post titles. You can use this tutorial here: https://css-tricks.com/snippets/css/truncate-string-with-ellipsis/
Having to combine the code using the class of the post title from above, your custom css could be like this:
.x-iso-container-posts.cols-3 .entry-title {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
We would love to know if this has worked for you. Thank you.