Title: CSS Edits
Last modified: August 22, 2016

---

# CSS Edits

 *  Resolved [Bucky](https://wordpress.org/support/users/rmaler1/)
 * (@rmaler1)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/css-edits-2/)
 * Michael,
 * This really more of a general coding question. I am learning a bit as I work 
   with wordpress and get help from guys like yourself. I put the following in my
   child themes custom css and they didn’t override the plugin files. Why didn’t
   they override the files? What I had before this was all of the edits inside of
   the actual plugin files, which I now know will disappear with updates. By the
   way, the changes I made were minor.
 *     ```
       /*removes margin and opacity from achievement list*/
       .badgeos-achievements-list-item .badgeos-item-image {
       	width: 16%;
       	padding-right: 4%;
       	display: block;
       	float: left;
       	margin: 0 0px 0px 0;
       	opacity: 1;
       	}
   
       /*removes margin and opacity from thumbnail image of selected achievement*/
       .achievement-wrap .badgeos-item-image {
       	margin: 0 0px 0px 0;
       	opacity: 1;
       	}
   
       /*congratulations modal font*/
       .badgeos-congrats-achievement .content {
       	font-weight: 700;
       	max-width:100%;
       	padding-left:0em;
       	position: relative;
       	float: left;
       	}
   
       /*congratulations modal top bar background and font color*/
       #TB_title {
       	background: #544643;
       	color: #eee;
       	}
   
       /*display no image in congratulations modal*/
       .badgeos-congrats-achievement .image {
       	display: none;
       	}
   
       /*congratulations modal title font size*/
       .badgeos-congrats-achievement .title {
       	font-size: 2em;
       	line-height:1.4em;
       	font-weight: bold;
       	}
       ```
   
 * [https://wordpress.org/plugins/badgeos/](https://wordpress.org/plugins/badgeos/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Michael Beckwith](https://wordpress.org/support/users/tw2113/)
 * (@tw2113)
 * The BenchPresser
 * [11 years, 2 months ago](https://wordpress.org/support/topic/css-edits-2/#post-5845925)
 * My bets are that since they’re being loaded via your child’s style.css file, 
   they’re being loaded before the plugin css and thus the plugin just overrides
   them like they weren’t there in the first place.
 * You’ll want to find a method to get them loaded AFTER the plugins, whether by
   a late loaded `wp_enqueue_style()` for your own custom css file or perhaps loaded
   last by `wp_head()` with an embedded `<style>` tag.
 *  Thread Starter [Bucky](https://wordpress.org/support/users/rmaler1/)
 * (@rmaler1)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/css-edits-2/#post-5845929)
 * Okay. I’ll look into that. Thanks Michael.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘CSS Edits’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/badgeos_85d3bc.svg)
 * [BadgeOS](https://wordpress.org/plugins/badgeos/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/badgeos/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/badgeos/)
 * [Active Topics](https://wordpress.org/support/plugin/badgeos/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/badgeos/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/badgeos/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 2 replies
 * 2 participants
 * Last reply from: [Bucky](https://wordpress.org/support/users/rmaler1/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/css-edits-2/#post-5845929)
 * Status: resolved