Nova Docs
PreviewAboutStyle GuideBuy Now
  • Getting Started
    • Introduction
  • Fundamentals
    • Installation
    • Customization
    • Add Menu Items
    • Enabling Comments
    • Editing Theme
  • Code-level Changes
    • Removing Animations
    • Bold Heading
    • Removing Post Meta
Powered by GitBook
On this page
  • Remove on article load
  • Remove on image hover
  • Applying changes

Was this helpful?

  1. Code-level Changes

Removing Animations

PreviousEditing ThemeNextBold Heading

Last updated 2 years ago

Was this helpful?

Requires changing theme code. See Editing Theme for more info.

Remove on article load

To remove the default article load animation, open index.css, search for .gh-article and remove this line:

animation: slide-in-from-left .5s ease;

Remove on image hover

Open to index.css and remove the following:

.featured-gh-card-image:hover,
.gh-card-image:hover {
	transform: translateY(-3px);
	transition: transform .3s ease
}

Applying changes

Once you’re done making these changes, visit to apply changes to your Ghost blog.

Applying changes