Title: Removing track #
Last modified: August 31, 2016

---

# Removing track #

 *  Resolved [Boenobo](https://wordpress.org/support/users/boenobo/)
 * (@boenobo)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/)
 * Hello. Read up on removing track numbers, but having trouble implementing the
   solution.
 * I’ve added…
 * .track:before {
    content: ”; }
 * …via the Simple Custom CSS plugin, but am seeing no change in the rendering at
   [http://www.jonseltzer.com/](http://www.jonseltzer.com/) (go to Demos from the
   main nav) — the track numbers remain intact. Please advise.
 * [https://wordpress.org/plugins/audio-album/](https://wordpress.org/plugins/audio-album/)

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

 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992298)
 * Try:
 *     ```
       .track .songtitle:before {
            content:'';
            display: none;
       }
       ```
   
 *  Thread Starter [Boenobo](https://wordpress.org/support/users/boenobo/)
 * (@boenobo)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992313)
 * No luck. If it makes any difference (i’m not too sharp with CSS), when i add 
   that code via the plugin, both single ticks following ‘content:’ are red (seems
   like a debugging catch)
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992316)
 * OK I’ve installed the Simple Custom CSS plugin on my test site. I don’t know 
   why the plugin was making the quotemarks red, but I don’t think that is a problem.
   It looks like the default CSS was overriding the custom CSS instead of the other
   way around.
 * Try adding the `!important` declaration to the rules. Also some left margin can
   be added to the title to improve the appearance:
 *     ```
       .track .songtitle:before {
            content:''!important;
            display: none!important;
       }
   
       .track .songtitle {
            margin-left: 8px;
       }
       ```
   
 *  Thread Starter [Boenobo](https://wordpress.org/support/users/boenobo/)
 * (@boenobo)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992373)
 * Bingo! Perfect – THANK YOU!
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992379)
 * Great! I’m glad that has worked for you.

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

The topic ‘Removing track #’ is closed to new replies.

 * ![](https://ps.w.org/audio-album/assets/icon-256x256.jpg?rev=1485171)
 * [Audio Album](https://wordpress.org/plugins/audio-album/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/audio-album/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/audio-album/)
 * [Active Topics](https://wordpress.org/support/plugin/audio-album/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/audio-album/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/audio-album/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [cubecolour](https://wordpress.org/support/users/numeeja/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/removing-track/#post-6992379)
 * Status: resolved