• Hello, first of all thanks for the awesome theme, and the support.

    I wanted to modify the layout of the home page in two ways:

    1)Show only one full-wide post and then the rest in two columns. There is a similar request (already solved) here, where there is a code to change the layout to remove the first two posts completely, and show the 2 columns directly. I want just to remove one of the full with posts

    2)add a full with section under the slider, before the posts (if possible!)
    2.1) maybe it is too much, but is there an easy way to add two sidebars to the homepage? one on the left and one on the right?

    Thanks in advance!

    My website is https://www.nuevapangea.com

    Rafa

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Rafa,

    I hope you are well today and thank you for your questions.

    1)Show only one full-wide post and then the rest in two columns. There is a similar request (already solved) here, where there is a code to change the layout to remove the first two posts completely, and show the 2 columns directly. I want just to remove one of the full with posts

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

    @media (min-width: 768px){
    .blog.home .page-1 article.post:nth-child(2) {
        width: 50% !important;
        padding-right: 25px !important;
    }
    
    .blog.home .page-1 article.post:nth-child(2) .post-inner-content {
      border-bottom: 0;
      padding: 0;
    }
    body.blog.home article.post:nth-child(even) {
        clear: left !important;
        padding-right: 25px !important;
    }
    body.blog.home article.post:nth-child(odd) {
        clear: none !important;
        padding-left: 25px !important;
        padding-right: 10px !important;
    }
    
    .blog.home .page-1 article.post:first-child .post-inner-content{
      margin-bottom: 25px;
      padding-bottom: 25px;
    }
    }

    2)add a full with section under the slider, before the posts (if possible!)
    2.1) maybe it is too much, but is there an easy way to add two sidebars to the homepage? one on the left and one on the right?

    You can achieve this by creating a child theme of Activello theme and develop custom code in it to achieve this as currently Activello theme doesn’t provide this functionality.

    Best Regards,
    Movin

    Thread Starter RTC

    (@rtc)

    Excellent! worked perfectly, many thanks!!

    You are most welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘More changes to the layout of the homepage’ is closed to new replies.