Okay
  Public Ticket #2291501
How to edit and hide some blog features
Closed

Comments

  • Art started the conversation

    Hi guys,
    I need help editing some things on the blog:
    1) I tried to customize the code using "display: none" but I can't hide the "No comments" and "Comments are closed" items. Can you tell me where I have to set? or can you give me the code to insert?

    2) how can i change the color of the text in the right side menu of the blog?

    3) how can I translate the phrase "Search and hit enter"? or where can I make this change?

    I thank you in advance for your support.
    Art

  •  1,809
    Support replied

    Hello Art,

    1. try

    #comments .entry-meta li {

       display: none;

    }

    2. if you are running on a dark background - light content you can try this CSS

    .light-content .hervin-sidebar-widget ul li a {
        color: #fff;
    }

    .light-content .hervin-sidebar-widget ul li a {
        opacity: 0.4;
    }

    which changes the color and opacity

    3. you can find it in searchform.php but it's also a translatable string


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Art replied

    Thank you very much for your support.

    Art