• I’d like to remove the byline from posts, or at least the large gravatar about that appends to each entry.

    Thank you for any pointers in the right direction that would help.

    Deep bow.

Viewing 1 replies (of 1 total)
  • From the admin dashboard, go to Appearance > Supernova Options, click on the Styling tab, then scroll down until you see the big black box labeled Write Custom CSS.

    If you want to remove the author box altogether, you can copy & paste this CSS rule into that box:

    #authorarea {
       display: none;
    }

    If you just want to hide the gravatar, you can use this rule instead:

    #authorarea .avatar {
       display: none;
    }

    Don’t forget to click the Save Settings button.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove byline’ is closed to new replies.