How to remove Author bio & tags from post?

Yesterday, i have removed author name and tags from the post. But while i am checking these factors in desktop it was not appearing but where as in mobile it was appearing. How could i remove it from mobile. My website is http://www.elatestjobs.com.

Hi @mahender424, how did you remove the tags on desktop? This might give us a clue as to why they are still appearing on mobile.
Cheers

In custom CSS i have added the code
.author-bio {
display: none;
}

.entry-footer {
display: none;
}

If you are hiding it via css, then two ideas spring to mind. It could be the caching of the css file, or a media query that alters the display property on mobile.
It appears that those class are set not to display on mobile, so I think it may be the cache which is showing an older version of the css.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.