- This topic has 1 reply, 2 voices, and was last updated 6 years, 7 months ago by Hash.
- AuthorPosts
- May 19, 2018 at 10:13 am #6013akritiinfosystemsParticipant
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 NewsIt’s showing on Mobile and tablet but not showing on the desktop.
May 24, 2018 at 12:40 am #6094HashKeymasterIt 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;
}
} - AuthorPosts
- You must be logged in to reply to this topic.