I've been working on building a custom character sheet for a Cortex Prime game and today while I was adding a section all of the fieldset buttons (add, modify, delete, etc.) reset to their original style. I'd grabbed some CSS for styling the fieldset buttons from the CSS Wizardry thread and modified it a little. It was working fine earlier this month. Here is the CSS I've been using: /* Overlay the +Add button with content text. */ [data-groupname=repeating_class-ability] > button.btn.repcontrol_add::after { content: "+Add"; background-color:#ffffff; margin-left:-30px; } /* Overlay the Modify/Done button. Overlying text is static */ [data-groupname=repeating_class-ability] > button.btn.repcontrol_edit::after { content: "Modify"; background-color:#ffffff; margin-left:-36px; } /* this sets the formatting for all repcontrol buttons */ .charsheet .repcontrol_add, .charsheet .repcontrol_edit, .charsheet .repcontrol_del { display: block; color: black; font-size:.7em; line-height:.7em; height:.7em; } I really just want to reduce the size of the buttons. The rest of the style is fine for now.  Any suggestions?