PDA

View Full Version : Customizing Music


RightRudder
Apr-28-2008, 02:30 PM
Hello,

Couple questions por favor.

1- How can I reference different music per gallery? Is there an example I could look at?

2- This is just a test using temporary music. Currently I have the following configuration. I was expecting music only on the one gallery however it shows up on all of them including home page. I'm trying to enable only on the one gallery. Any suggestions?

CSS - Section
#my_music {display: none;}
.gallery_2008_-_3rd_Grade_-_SD_Natural_History_Museum {display: block;}

Header - Section
<div ="my_music"> <center> <embed src="http://members.cox.net/zero_g/onlytime.mp3" width="70" height="18" autostart="false" loop="true"> </div>


Thanks in advance,

Gerry

Allen
Apr-28-2008, 10:35 PM
Hello,

Couple questions por favor.

1- How can I reference different music per gallery? Is there an example I could look at?

2- This is just a test using temporary music. Currently I have the following configuration. I was expecting music only on the one gallery however it shows up on all of them including home page. I'm trying to enable only on the one gallery. Any suggestions?

CSS - Section
#my_music {display: none;}
.gallery_2008_-_3rd_Grade_-_SD_Natural_History_Museum {display: block;}

Header - Section
<div ="my_music"> <center> <embed src="http://members.cox.net/zero_g/onlytime.mp3" width="70" height="18" autostart="false" loop="true"> </div>


Thanks in advance,

Gerry
You need to use the gallery number in the CSS.

#my_music {display: none;}
.gallery_xxxxxxx #my_music {display: block;}

RightRudder
Apr-29-2008, 07:40 AM
You need to use the gallery number in the CSS.

#my_music {display: none;}
.gallery_xxxxxxx #my_music {display: block;}

Thanks Al! That makes sense. I will give it a shot.