Good evening, I would like to question.
How do I get the list of post like this site? (http://andreagaleazzi.com/)
How can I do to have the main menu like the one on your website?
Thanks so much.
Hey TedalGroup,
To achieve that layout look it requires custom css. Go ahead and setup your blog page with “Single author big preview pic” option http://kriesi.at/themes/enfold/blog/blog-single-author-big/ and share the link with us and we will provide you custom css.
Best regards,
Vinay
Thank you for answering.
Ok, here’s the link:
Thank you.
Hi,
try this code inside of Quick CSS field:
.post {
display: flex;
}
and then adjust image size with this code as needed:
.small-preview img, .big-preview img {
width: 300px;
max-width: 300px;
}
Best regards,
Andy
Thank you for answering.
It works for desktop but I would customize it more.
How do I put the color separators?
I would like to have this on the mobile layout (http://awesomescreenshot.com/05f5xhlrb8), how can I do?
Thanks so much.
Hi,
about which color separators are you talking about?
For mobile use this code:
@media only screen and (max-width: 767px) {
.post {
display: block;
}}
Best regards,
Andy
Thank you for answering.
I speak of the separator on the extract of the article.
See the screen
Thank you.
Hi,
do you mean this thin grey line? not sure if it’s easily possible. Where do you want to have it exactly? a mockup showing the results you want to achieve would help a lot. Use imgur.com or dropbox.
Best regards,
Andy
Thank you for answering.
I will soon send you the mockup.
Now how can I do to reduce the extract content of the article?
Thank you.
Hi,
are you talking about excerpt length? If yes add the below code in your functions.php
function new_excerpt_length($length) {
return 200;
}
add_filter('excerpt_length', 'new_excerpt_length');
Increase the count as per your wish.
Best regards,
Andy