Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3152119
Popular posts
Closed

Comments

  • Marcin Makarewicz started the conversation

    Hi,

    How can I move Popular posts to the bottom of the homepage?

  • Marcin Makarewicz replied

    Also, can I move the titles of the posts from the Popular section to the left? 

  •  2,487
    PenciDesign replied

    Hi,

    1. Please go to Appearance > Widgets: drag & drop the widget to any area you want to show here,

    2. Expand the .Soledad Popular Posts widget, check the "Display thumbnail on right?:" option.

    Regards,
    PenciDesign.


  • Marcin Makarewicz replied

    Thank you 

    I'd like to move Popular posts to the bottom of the homepage but NOT for the sidebar elements to move.

  •  2,487
    PenciDesign replied

    Hi,

    For this case, please build the homepage layout with the Elementor Page Builder plugin by following the document here: https://soledad.pencidesign.net/soledad-document/#homepage

    Regards,
    PenciDesign.


  • Marcin Makarewicz replied

    Hi, I wouldn't like to rebuild the page, all I need is to move Popular posts to the bottom of the homepage - any CSS possible or a different solution apart from the new page build? 

  •  2,487
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    body.home .wrapper-boxed {
        display: flex;
        flex-direction: column;
    } body.home .wrapper-boxed .penci-home-popular-posts {
        order: 2;
    } body.home .wrapper-boxed .clear-footer, body.home .wrapper-boxed #footer-section {
        order: 3;
    }


    Regards,
    PenciDesign.



  • Marcin Makarewicz replied

    Great, Thank you,

    I also wanted to move the titles of the posts from the Popular section to the left. Possible?

  •  2,487
    PenciDesign replied

    Hi,

    Please add the following CSS code to your site:

    .home-pupular-posts-title {
        text-align: left;
    }
    .home-pupular-posts-title span {
        padding-left: 0;
    }

    Regards,
    PenciDesign.


  • Marcin Makarewicz replied

    My apologies for the confusion but I mean to move the posts titles to the left within the Popular section. Not the Popular title itself - see attached. 

    Attached files:  Clipboard (63).jpg

  •  2,487
    PenciDesign replied

    Hi,

    Please add the following CSS code to your site:

    .penci-home-popular-posts .item-related {
        text-align: left;
    }

    Regards,
    PenciDesign.