Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #643012

    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.

    #643084

    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

    #643131

    Thank you for answering.

    Ok, here’s the link:

    Thank you.

    #643645

    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

    #644299

    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.

    #644755

    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

    #644810

    Thank you for answering.

    I speak of the separator on the extract of the article.
    See the screen

    Thank you.

    #644873

    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

    #651716

    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.

    #652177

    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

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.