• I would like to remove “POSTED ON: AUGUST 22ND, 2011, BY Author and NO COMMENTS YET” from all the PAGES on my Blog/website. The theme is Illusion and I have tried and couldn’t exclude those thing from the pages. Any help will be greatly appreciated – Please, I don’t know Coding.
    https://www.wirelessnewsplus.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • a possible easy method would be to add this to the end of style.css of your (child) theme:

    .page .entry-meta { display: none; }

    (this is only targeting static pages, and page templates)

    better would be to locate the code in page.php, and remove it there, or hide it by commenting it out in the php code.

    Thread Starter orjense

    (@orjense)

    Alchymyth – Thanks you very much! It worked perfectly. Gosh I ve been toiling for two days trying to isolate those things. Thanks A Bunch.

    Is there a solution or ways to reduce the Post Titles? They re a bit too big.
    Thanks.
    https://www.wirelessnewsplus.com

    post titles where?

    for post titles in single posts – add this to style.css of the child theme:

    .single h1 { font-size: 18px; }
    (adjust the number value)

    for the front page, the post titles are already styled in style.css of the child theme; change it there:

    .box_630_inside h1 {
    	font-size: 18px;
    }

    for the titles in the ‘latest post’ section of the front page, you might need to add this to style.css of the child theme:

    .latestpost .latestpost_title a { font-size: 18px; }

    Thread Starter orjense

    (@orjense)

    Thank you very much. Really! Really appreciate your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to Remove Date, Author and Comment from Pages’ is closed to new replies.