• I’ve created a child theme of Edin, and have one problem I can’t fix. On this page:

    https://mf-fellows-dev.mit.edu/0023_8277/ and others like it I can’t figure out how to remove the Posted on… line. I’d like to get rid of the whole thing. I’ve tried inspecting the element and using numerous CSS selectors, but nothing’s working.

    Any suggestions? Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • https://wordpress.org/support/theme/edin

    your style.css of the child theme has (some ?) unclosed @media queries which stop any CSS added to its end being applied.

    double-check your style.css and close all the @media queries acordingly.

    then you should be able to use:

    .entry-meta { dispay: none; }

    or page specific:

    .postid-304 .entry-meta { display: none; }

    Thread Starter hannahloomis

    (@hannahloomis)

    Yes, you’re right – some of the code was a mess! I went through and closed where needed, then added:

    .entry-meta {display: none;}

    and now it works perfectly. And it cleared up another problem I was having. Thanks so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Edin theme remove Posted on…’ is closed to new replies.