• Resolved dooleymark

    (@dooleymark)


    Hello everyone,

    Using WP 3.8.3, theme Twenty Thirteen, I am trying to delete the line of data below post titles on my Homepage. How do I do that?

    Here is the site: drmarkdooley.com

    Help greatly appreciated. Many thanks in advance!

Viewing 7 replies - 16 through 22 (of 22 total)
  • Just was browsing your site a little, and I stumbled upon this: “… I endeavour to make the language of Derrida accessible …”

    As a failed English Lit graduate student, I’m going to posit that learning to set up a child theme presents a far less formidable challenge than deciphering Derrida!

    You can do it ??

    Thread Starter dooleymark

    (@dooleymark)

    Thank you for your encouragement!
    Actually, I should make things clear right now: I am not the distinguished philosopher Mark Dooley, but only a good friend of his helping him with his website. I am also in another country, so cannot have access to his computer. Is there anything I can do from a distance?
    Thank you again so much for your help — truly grateful.

    Yes, you can do something from the Editor area. The following is what we’d call a “hack.” It will vanish next time the theme is updated, and the unwanted text will reappear.

    In the editor, you want to have the file called “styles.css” open.

    Scroll down about a third of the way to line 1045 till you see a heading like this:

    /**
     * 5.2 Entry Meta
     * ----------------------------------------------------------------------------
     */

    On the line after all this, we are going to paste a little bit of CSS code.

    If you want to remove only the red text meta-data that is right above the philosopher’s head, paste this:

    .home #post-146 .entry-meta {
         display: none;
    }

    If you want to get rid of both that and the meta-data that follows the quote in the black bar that’s a little farther down the page, paste in this instead:

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

    Save it and check the page. Let me know if you have a problem or if there are unexpected changes.

    My disclaimer: This should accomplish what you want, but it is NOT the preferred way of making this change. If you can at some point get access to the files on his server, go the Child Theme route and make the change in the template file called “content.php”. Once you have a child theme running, it’s easier to make additional modifications down the road.

    Thread Starter dooleymark

    (@dooleymark)

    Thank you SO much bob.passaro! I will try what you recommend, knowing that it will work only until the next update.

    However, I have also forwarded the link to our conversation to my dear philosopher friend, so that he knows what to do from his own computer.

    It has been a real pleasure chatting with you — you have been so kind and helpful. Thank you again so much!

    Thread Starter dooleymark

    (@dooleymark)

    YES!!! It worked!!!
    Thank you SO much!
    If only there were more people like you on this earth!

    Thank you. Glad I could help.

    Thread Starter dooleymark

    (@dooleymark)

    I am marking this as resolved.
    All good wishes to you.

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Removing line of data below post title’ is closed to new replies.