Custom CSS

Please copy the CSS snippets you need below and paste them at

Appearance -> Customize -> Additional CSS

~ Change image page 404

.nc-Page404 header .nc-NcImage img {
   opacity: 0;
}

.nc-Page404 header .nc-NcImage {
    background-image: url('YourImageUrl');
    background-size: contain;
}

~ Hidden Author on Post-cards

.nc-PostCardMeta a.relative.flex.items-center.space-x-2, 
.nc-PostCardMeta span.mx-\[6px\].font-medium {
    display: none;
}

.nc-PostMeta2 a.block.font-semibold {
  display: none;
}

.nc-CardAuthor2 {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

~ Change line-clamp on post card title:

~ Change BG on home page:

~ Hidden reading-time:

~ Hidden ViewCount on Single page

~ Hidden both Like button and Comment button

~ Hidden Like button on post card

~ Hidden Comment button on post card

Last updated

Was this helpful?