By default, the Avada theme displays the post meta on LearnDash course pages. Post meta refers to the author, date, and number of comments:
By {author} | October 14th, 2022 | Comments off
You can remove this post meta with the following CSS:
.single-sfwd-courses .fusion-meta-info {
display: none;
}
This will only remove the post meta on LearnDash course pages, and leave it everywhere else.
If you wanted to remove it everywhere across your site, try this:
.fusion-meta-info {
display: none;
}