• Hello.

    I want to remove the date and author from the posts. So I added in my style.css:

    .post-date { display: none; }
    .entry-date {
    display: none;
    }
    .author {
    display: none;
    }

    It worked in the desktop, but when I open in a mobile it doesn’t! Even with the following code:

    .mobile-theme span.entry-date {
        display: none;
    }

    But still no success..
    Can anyone help me to remove the date from posts when I access the site in mobile?

    Many thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lleo

    (@lleo)

    Hello,

    I have also tried adding this:

    @media screen and ( max-width: 800px ) {
      .entry-date { display: none; }

    Any help will be very much appreciated! Thanks again!

    Thread Starter lleo

    (@lleo)

    Hi again,

    I just started to look where there was a .post-date and found this one.

    .post-date,
    .cat-links,
    .tags-links {
    	display: block;
    	max-width: 90%;
    }

    Just switched the display to none and voilá.

    Worked on the mobile.
    Hope it helps,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove date and author post in Mobile’ is closed to new replies.