Customize LearnDash Achievements Notifications

Updated 1 year ago
by Dave Warfel

Center-Align Notification Info

The following CSS can be used to center-align LearnDash Achievement notifications when using the official LearnDash Achievements add-on. It will center the title, description, and image, as well as put the text & image in one column, stacked on top of each other.

.noty_bar .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

Text Above Image

If you want to move the image below the text, add this additional CSS:

.noty_bar .wrapper .image {
	order: 2;
}
.noty_bar .wrapper .text {
	order: 1;
}

This changes the order of the text & image, moving the image down below the text.

Badge/Icon Size

To change the size of the notification badge/icon, use the following CSS. You can change the width value to anything you’d like.

.noty_bar .image,
.noty_bar .image img {
	width: 125px;
}

All CSS code should either be placed in a child theme’s main CSS file (typically style.css), or the Additional CSS area of the WordPress Customizer.

How to Add CSS to Your Site

Forum Rules

Be Kind & Patient

We’re here to learn and/or help each other. Please don’t be mean, rude, or condescending. Treat all members the way you should be treating dogs and your elders—with the utmost love & respect.

External Links

✅ Other websites that add value, help solve problems & contribute to the discussion. ❌ Affiliate links are prohibited. (Site owners may use affiliate links to help support the site.)

Promotion

✅ You may promote your own products/services if they are relevant to an existing discussion. You must disclose your relationship with the product(s).
❌ You may not create new posts simply to promote your products.

Non-LearnDash Topics

❌ General (free) Forum: Only LearnDash-specific topics are allowed.
✅ Premium Forums: You are allowed to post other questions tangentially related to LearnDash. Please use the appropriately named forum. If it doesn’t exist, use the “LearnDash Integrations” forum.

Our Right to Remove

We reserve the right to remove any content, at any time, for any reason. We can also merge one post with another. We will exercise caution when removing content and always try to provide an explanation.