Home Forums Viral In Viral Theme, only On desktop, "Posted in" and "Tags" are not showing.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #6013
    akritiinfosystems
    Participant

    Dear Sir,

    In Viral Theme, On the desktop, “Posted in” (Categories) and “Tags” are not showing.
    But on Mobile and Tablet, it is showing.

    My website:

    Example:

    Posted in : Technology News
    Tagged BlackBerry, Blackberry k-2, BlackBerry Key2, Blackberry Key2 Specifications, Latest News, New Smartphone, QWERTY’s Keypad Mobile, Technology Latest News, Technology News

    It’s showing on Mobile and tablet but not showing on the desktop.

    #6094
    Hash
    Keymaster

    It looks like some of the plugins that you are using is hiding it in the desktop. There is a CSS as below.

    @media screen and (min-width: 61.5625em){
    body:not(.search-results) article:not(.type-page) .entry-footer {
    display: none;
    }
    }

    You need to either remove the plugin or add the below CSS

    @media screen and (min-width: 61.5625em){
    body:not(.search-results) article:not(.type-page) .entry-footer {
    display: block !important;
    }
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.