Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author cubecolour

    (@numeeja)

    Try:

    .track .songtitle:before {
         content:'';
         display: none;
    }
    Thread Starter Boenobo

    (@boenobo)

    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

    (@numeeja)

    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

    (@boenobo)

    Bingo! Perfect – THANK YOU!

    Plugin Author cubecolour

    (@numeeja)

    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.