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 #3419989
Related article
Closed

Comments

  •  2
    Fjura started the conversation

    Hello,

    may I ask, is there any feature that could add a specific related post box to the content of another post?

    You know if you have a post, but to the middle of that post for example you would want to add a box or something with a "related post" that you would could choose.


    thank you

  •  2,541
    PenciDesign replied

    Hi,

    You can insert the custom-related post box via the Soledad shortcode like the screenshot below:

    2nP8cIE.png

    Regards,
    PenciDesign.


  •  2
    Fjura replied

    Thank you, but is it possible to make it a bit bigger? It looks more like a list and is very small even on mobile. The imege is so small for example, that you cant see very well whats on it. 

    Attached files:  related.png

  •  2,541
    PenciDesign replied

    Hi,

    Please send me the URL that you've inserted this shortcode.

    Regards,
    PenciDesign.


  •  2
  •  2,541
    PenciDesign replied

    Hi,

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

    @media only screen and (max-width: 767px) {
        .pcilrp-flex .pcilrp-thumb {
            flex: 0 0 150px;
        }
        .pcilrp-flex .pcilrp-body {
          flex: 0 0 calc(100% - 170px);
        }
        .pcilrp-item-grid .pcilrp-title {
          font-size: 16px;
        }
    }

    Regards,
    PenciDesign.



  •  2
    Fjura replied

    Hi,

    I added it, but nothing seems to have changed.

  •  2,541
    PenciDesign replied

    Hi,

    The code I've sent applies to mobile devices only. Please clear all the browser cache and check again.

    Regards,
    PenciDesign.


  •  2
    Fjura replied

    Hi,

    seems to work, and this can only be applied on mobile?

  •  2,541
    PenciDesign replied

    Hi,

    If you want to apply to the desktop, please modify the CSS code like the following below:

    .pcilrp-flex .pcilrp-thumb {
        flex: 0 0 150px;
    }
    .pcilrp-flex .pcilrp-body {
      flex: 0 0 calc(100% - 170px);
    }
    .pcilrp-item-grid .pcilrp-title {
      font-size: 16px;
    }

    Regards,
    PenciDesign.



  •  2
    Fjura replied

    worked great, thank you

  •  2
    Fjura replied

    May I ask, this already looks much better, but isnt there a possibility to have the post title rather above the image then on the right/left side?

  •  2,541
    PenciDesign replied

    Hi,

    You can customize it on the shortcode builder option popup like the screenshot below:

    STq2c8f.png

    Show thumbnail on the right side?: select "No".

    Regards,
    PenciDesign.



  •  2
    Fjura replied

    thats strange, I actually do have it set like that (Show thumbnail on the right side?: "No".) and it doesnt show the title above the image, it shows it on the right side. 

    thumb_right="no"
    

    What I would actually like to achieve is something like on the screenshot attached, where the title would be either above or under the image, that way the image could even be bigger. 

    Attached files:  rel.png

  •  2,541
    PenciDesign replied

    Hi,

    Please send me your WordPress admin account.
    I'll log in and try to help you config it.

    Regards,
    PenciDesign.



  •   Fjura replied privately
  •  2,541
    PenciDesign replied

    Hi,

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

    .pcilrt-grid .pcilrp-flex {
        display: block;
    } .pcilrt-grid .pcilrp-flex  .pcilrp-thumb {
        margin-bottom: 15px;
    }

    Regards,
    PenciDesign.



  •  2
    Fjura replied

    thank you, that actually worked great, but once the images were bigger, you could see that their quality was horrible when resized, so sadly this cant be used because of it, but the layout looked great.

  •  2
    Fjura replied

    may I ask, is it possible to somehow fix the text being very close to the border when resizing? I tried to do it with this code below, but seems it didnt help. 

    https://www.lenivakucharka.sk/stavnaty-hovadzi-steak/

    .penci-ilrelated-posts .pcilrp-item-grid .pcilrp-title a {
        font-size: 16px;
        padding-right: 10px;
    }



    Attached files:  padding (2).png

  •  2,541
    PenciDesign replied

    Hi,

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

    @media only screen and (min-width: 768px) and (max-width: 1170px) {
        .pcilrt-grid.pcilrt-col-2 .pcilrp-item-grid {
            flex: 0 0 100%;
            margin-bottom: 30px !important;
        }
        .pcilrt-grid.pcilrt-col-2 .pcilrp-item-grid:last-child {
            margin-bottom: 0 !important;
        }
    }

    Regards,
    PenciDesign.



  •  2
    Fjura replied

    thank you, it worked