Related Posts Settings

Hi,

For the theme I downloaded, I don't see any template for a single post portfolio. So I don't know where to edit the settings for the related posts at the bottom of my single portfolio posts.

How do I remove the date and the 'read more' button?

How do I increase the spacing between the posts so the images aren't touching?

This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
Image
Related Posts on Single Portfolio Post.png
2.66 MB

Thank you!

Comments

  • Hi,

    1) Go to Betheme -> Theme options -> Blog & Portfolio -> Portfolio, and uncheck the date option:

    2) You can use the following CSS code:

    1. .section-related-adjustment .post-related{
    2.  padding: 12px;
    3. }

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

  • Hi,

    The date was already off in the settings. And I don't see any option to turn off the 'Read More".

    This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
    Image
    Date and Read More in Related Posts.png
    1.66 MB
    This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
    Image
    Portfolio Settings.png
    485.72 KB

    And the code for the spacing worked. Thank you!

  • Use this:

    1. .section-post-related .date_label,
    2. .section-post-related .desc .button{
    3.  display: none;
    4. }

    Best regards

  • Thank you!

    Could you please also tell me how to reduce the size of the titles in the related posts section ?

    This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
    Image
    Related Posts titles.png
    2.1 MB


  • Titles of related posts use H4 tag, so you can adjust its size in Betheme -> Theme options -> Fonts -> Size & Style.

    Best regards

  • Hi,

    Doing that also changes the size of the 'related posts' title at the top.

    Is there any way to only change the size of the titles highlighted in red?

    If there are no settings I can change, is there any css code I can use where I can just adjust the pixel size in the code until its small enough?

    This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
    Image
    Related Posts titles.png
    2.1 MB

    Thank you!

  • You can use this code:

    1. .section-post-related .portfolio h4{
    2.  font-size: 30px;
    3. }

    Best regards

  • Thank you!

  • Could I also get the code to change the 'related posts' title from a h4 to a h5?

    As well as the code to adjust the font size for the 'related posts' title?

    This is an embed external element. It can be deleted using the delete key or the backspace key. To view the full element, press the preview button below.
    Image
    Related Posts Title.png
    2.12 MB

    Apologies for asking for so many codes, but there seems to be no specific settings I can adjust for this section of the website.

    Thank you!

  • The CSS does not work this way and cannot change H4 to H5. To do so, you must create a custom portfolio project template, which I also recommend for all the customizations you want to make to prevent writing custom CSS codes.


    Best regards

  • Thank you for the recommendation. Will do!

Sign In or Register to comment.