Hi there,
I've combed through all the code but I can't figure out how to accomplish what I want. I'm using Soundmanager2 with CCK FileField, and I'd like to output the description/title but not have it link to the MP3. Is that possible?
Thanks,
jimi
Hi there,
I've combed through all the code but I can't figure out how to accomplish what I want. I'm using Soundmanager2 with CCK FileField, and I'd like to output the description/title but not have it link to the MP3. Is that possible?
Thanks,
jimi
Comments
Comment #1
joecanti commentedA quick fix for this would be to locate the page-player.css in the page player folder and add display:none; to .sm2-filelink.
So:
Old:
.sm2-filelink {
color:white;
display:block;
font-size:0.6em;
}
New:
.sm2-filelink {
color:white;
display:block;
font-size:0.6em;
display:none;
}
It looks like you can also edit this css to change colours/font styles etc which would be useful.
Cheers, Joe
Comment #2
jddeli commentedThat dont work
is there a realy solution?
Comment #3
theohawse commentedNot really a true solution, but it's one step towards hiding the links:
Old:
New:
Comment #4
theohawse commentedFound another issue regarding the identical problem: http://drupal.org/node/1082344
Please post in that thread if you need a more solid solution than just css.