Remove Latest Projects Title & Text?

  • Posted in : Responsy WP
  • deci13
    Participant

    Is it possible to remove the Latest Projects Title and Latest Projects Text area from the home page so that there can be 4 portfolio projects shown on the home page?

    Also, is it possible to remove the From The Blog Title and From The Blog Text area from the home page so that there can be 4 blog posts shown on the home page?

    Thank You

    Mehmet S.
    Keymaster

    Paste to Theme Settings > Style > Custom CSS:

    .template-name-homepage-with-slider .latest-portfolio .portfolio-part
    {
    display: none;
    }
    
    .template-name-homepage-with-slider .latest-posts-wrap .blog-part
    {
    display: none;
    }
    
    deci13
    Participant

    Awesome that removed the Titles, thanks! But now when I set the Appearance > Widgets > Responsy Latest Projects to 4 projects the theme wraps the 4th project to the next line so there are 3 in a row and then the 4th project is underneath.

    Is there a way to have 4 Latest Projects on one line and 4 Blog Posts on one line?

    Mehmet S.
    Keymaster

    Add this one:

    .latest-portfolio .service:nth-child(4n+1)
    {
    clear: none;
    }
    
    deci13
    Participant

    Awesome there are 4 portfolio projects on the home page, thank you!

    The blog posts are still showing 3 in a row and the 4th one is underneath. Is there a way to get 4 blog posts lined up in a row on the home page like the 4 portfolio projects?

    Mehmet S.
    Keymaster
    .latest-posts-wrap .blog-post:nth-child(4n+1)
    {
    clear: none;
    }
    
    deci13
    Participant

    Yes! Thank you!!!

Viewing 7 posts - 1 through 7 (of 7 total)

The forum ‘Responsy WP’ is closed to new topics and replies.