Remove Author from Blog Posts

By default, Raisely will show the name of the person on any blog posts that you write, alongside the date you posted it.

If you'd rather not show your name on your blog posts, you can hide it from your template using custom CSS styles.

Step 1 – Navigate to your campaign's custom styles tab. 

You'll find this under Design > Custom Styles, inside the campaign you're editing.

Step 2 – Paste in the CSS snippet

Click into "Custom Styles" and scroll to the very bottom of your CSS file. Then, copy and paste the following code snippet it into the end of the file.

.post .post__meta {
  &__author {
  	display: none;
    
    + .post__meta__date {
      margin-left: 0;
      &:before {
        display: none;
      }
    }
  }
}

Once in, it should look a bit like this:

Then, save your changes and test your website to make sure the author is hidden. Nice coding!

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Our Support Team Contact Our Support Team