Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author GavickPro

    (@gavickpro)

    Hello,

    Please just add:

    .entry-date {
    display: none;
    }

    in the mobile media query in the style.css file.

    Thread Starter NameAlreadyExists1

    (@namealreadyexists1)

    It doesn’t seem to do anything?

    I placed it here, is that correct?

    GK Portfolio: Stylesheet (style.css)

    /* Fix for the mobile menu animation */
    @media (min-width: 721px) {
    .menu-main-menu-container {
    height: auto!important;
    }
    }
    .entry-date {
    display: none;
    }

    Theme Author GavickPro

    (@gavickpro)

    You have to put the code inside media query:

    @media (max-width: 721px) {
    .entry-date {
    display: none;
    }
    }
    Thread Starter NameAlreadyExists1

    (@namealreadyexists1)

    Perfect! Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove dates on the mobile version’ is closed to new replies.