Home › Forums › Jevelin Theme › Hide Text block from Mobile version
Home › Forums › Jevelin Theme › Hide Text block from Mobile version
Hello,
I would like to hide text block (in this case “T”) only in mobile version but in computer version need to be active.
Hi @toms_bubble,
I hope you are well today and thank you for your question.
Could you please share the page URL from your site where it is displaying so that I can help you?
Best regards,
Shufflehound team
You can hide it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
@media (max-width: 900px){ #content .sh-heading-content em { display: none; } }