Okay
  Public Ticket #3842642
Assistance with Blog Line Limit
Closed

Comments

  • rankscapepvtltd started the conversation

    Dear Team,

    I hope you are doing well. I wanted to inform you that everything is working well. However, I have one concern regarding how to limit the blog line.

    Could you guide me on setting a line limit, as mentioned in the attached file? I want to make some changes to the home page.

    Best regards,
    Aditya Sahani

  •  267
    Theme Ruby replied

    Hi,

    Thank you for reaching out. It seems that the image attachment was not included in your email. Could you please resend it?

    Additionally, we would appreciate it if you could provide some clear notes or annotations on the image to help us better understand the changes you’d like to make. This will allow us to assist you more effectively.

    Best regards,

  •  267
    Theme Ruby replied

    Hi,

    Thank you for reaching out.

    At the moment, our theme does not have a built-in option to limit the number of lines for titles. However, you can achieve this effect using custom CSS. Please add the following code to your WordPress site’s Additional CSS section:

    .p-wrap .entry-title {
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    

    The number 2 in -webkit-line-clamp: 2; determines the maximum number of lines before truncation. You can modify this value to fit your design preferences.

    To Add Custom CSS in WordPress:
    1. Log in to your WordPress Dashboard.
    2. Navigate to Appearance > Customize.
    3. Click on Additional CSS.
    4. Paste the code above and adjust the value as needed.
    5. Click Publish to save the changes.

    If you need further assistance, feel free to reach out. We're happy to help!

    Best regards,