Some words appear on my website that i cannot delete…
-
Some words appear on my website that I cannot delete like ” Posted on December 24, 2014 | Comments Off” or “Comments Off”. How can I do this?
Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hello there!
You can hide this information from your site by adjusting your theme’s CSS code. You can do this, as you have the Premium upgrade. I can assist.
If you’d like to give this a try, click Appearance → Customize in your site’s Dashboard. Then, click CSS in your right-hand menu. In the CSS Revisions box, please paste the following underneath all existing text:
.wf-active .entry-meta {
visibility: hidden;
}Then Save your changes.
That should do the trick! If I can help in any other way, please drop me a line. Cheers :)
-
-
-
Hello again…
As previously noted your instructions worked perfectly. However the drawback in terms of appearance is the spacing that appears below the posts title.
Given the above, I revised the recommended code as follows:
.wf-active .entry-meta { visibility: none; }This did not work.
Is there a way I can delete (vs. hide) ” Posted on December 24, 2014 | Comments Off” or “Comments Off”.
Thank you!
-
Hi there,
Robyn has been out of the office for a couple of days, so I am going through some of her tickets.
If you are concerned about that blank line that is created by using the visibility:none; tag, then you may want to try using the “display:none;” variation as below:
.wf-active .entry-meta { display: none; }Let me know how that works for you!
-
-
- The topic ‘Some words appear on my website that i cannot delete…’ is closed to new replies.