How can I hide "read more" on slider?

Hi guys,

I am trying to hide the “READ MORE” text from the slider but I cannot. There is a CCS code? I was looking for a solution over here but it seems there is just a code to hide everything from the slider, but not only the read more text.

It would be possible?

Thank you in advance.

Another thing (I apologize for the second post): it would be possible to hide the name of just a specific category? I have “hot” category just to send post to the slider, but I do not want to show this category with the posts.

Hi @santosexequiel,

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

I am trying to hide the “READ MORE” text from the slider but I cannot. There is a CCS code? I was looking for a solution over here but it seems there is just a code to hide everything from the slider, but not only the read more text.

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

.flex-caption .read-more {
    display: none;
}
Another thing (I apologize for the second post): it would be possible to hide the name of just a specific category? I have “hot” category just to send post to the slider, but I do not want to show this category with the posts.

Yes it is possible by developing CSS code.

Could you please share me your site URL where it’s displaying and tell me from which section you want to hide it so that i can help you to achieve it?

Best Regards,
Movin

Hi, Movin.

Thank you so much for your help. I can hide the read more text now. Thanks.

The URL is www.santosexequiel.com.ve

If I use this

article li.cat-item {
display: none;
}

The categories disappear. All of them. But I just want to hide HOT category. Is that possible?

Thank you in advance.

Hi, @Movin

I am sorry for this other post. But I wanna tell you that I’ve been trying with this code:

article li.cat-item-10 {
display: none;
}

And even when it removes the HOT category, it doest not show the other post categories.

You can try hiding only hot category by using the below CSS code.

article li.cat-item.cat-item-10 {
display: none;
}