Title: Remove border on active title
Last modified: December 12, 2017

---

# Remove border on active title

 *  Resolved [mazzop](https://wordpress.org/support/users/mazzop/)
 * (@mazzop)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/remove-border-on-active-title/)
 * Hi Phil
 * Awesome plugin, thx!
 * I have a simple CSS question:
    – how do I remove the border that appears when
   a title is activated (whether opened or closed). I can’t seem to get anywhere
   just with the classes I’ve been trying to style.
 * It’s similar to what happens on your plugin’s faq section (even if that is not
   through your plugin) and while it looks fine there, for my specific need I’d 
   like to lose it.
 * Thanks for any help,
    Mads
    -  This topic was modified 8 years, 6 months ago by [mazzop](https://wordpress.org/support/users/mazzop/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-border-on-active-title%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [philbuchanan](https://wordpress.org/support/users/philbuchanan/)
 * (@philbuchanan)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/remove-border-on-active-title/#post-9777158)
 * Hi Mads,
 * The outline is an accessibility feature for people who navigate sites with a 
   keyboard. It lets them know that the accordion item currently has focus and can
   be interacted with.
 * That said, you can remove it with this CSS:
 *     ```
       .accordion-title:focus {
           outline: none;
       }
       ```
   
    -  This reply was modified 8 years, 6 months ago by [philbuchanan](https://wordpress.org/support/users/philbuchanan/).
 *  Thread Starter [mazzop](https://wordpress.org/support/users/mazzop/)
 * (@mazzop)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/remove-border-on-active-title/#post-9780186)
 * Thank you so very much, Phil. You’re a nice man.
 * For future reference, is there a list of css targets (for want of a better word)
   listed somewhere? I would have never guessed the :focus bit – granted my CSS 
   journey is just starting.
 * How does one send you a donation?
 *  Plugin Author [philbuchanan](https://wordpress.org/support/users/philbuchanan/)
 * (@philbuchanan)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/remove-border-on-active-title/#post-9782212)
 * Thank you. No donation necessary. Just glad to hear it is working well for you.
 * There isn’t an exhaustive list of CSS selectors for the plugin, but there is 
   some sample CSS a little ways down on the home page.
 * Here is the list with descriptions:
 *     ```
       .accordion {}                   /* The main accordion container */
       .accordion-title {}             /* All accordion titles */
       .accordion-title:hover {}       /* Mouse over the accordion title */
       .accordion-title:focus {}       /* When the title has focus */
       .accordion-title:first-child {} /* The first accordion item title */
       .accordion-title.open {}        /* The title of an accordion item that is open */
       .accordion-content {}           /* The accordion content itself */
       ```
   
    -  This reply was modified 8 years, 6 months ago by [philbuchanan](https://wordpress.org/support/users/philbuchanan/).

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

The topic ‘Remove border on active title’ is closed to new replies.

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

## Tags

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

 * 3 replies
 * 2 participants
 * Last reply from: [philbuchanan](https://wordpress.org/support/users/philbuchanan/)
 * Last activity: [8 years, 6 months ago](https://wordpress.org/support/topic/remove-border-on-active-title/#post-9782212)
 * Status: resolved