• Enen

    (@nnagarajan7)


    I saw a thread for removing date and comment in the front page. The author had asked to include the following code in the css. The said thread is now closed and hence this new post.

    ===
    .home ul.meta-info li:nth-of-type(1n+2) {display: none;}
    ===

    I would like to know how to remove only the date from the front page. Any help would be appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello nnagarajan7,

    Try below css.


    .home .meta-info li:nth-child(2){
    display: none;
    }

    Hope this will helps you.

    Thanks!

    Thread Starter Enen

    (@nnagarajan7)

    Hi, thanks. Yes, that solved my problem.

    Can you also help me to change the font typeface (for e.g. Times New Roman) of the site title (only the site title).

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Try below css code.


    .site-title {
    font-family: Times New Roman;
    }

    Hope this will helps you.

    Thanks!

    Thread Starter Enen

    (@nnagarajan7)

    Thanks. I have replaced the site title with logo.

    Regards,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove date from front page’ is closed to new replies.