Tell me more ×
SmugMug Stack Exchange is a question and answer site for SmugMug developers and end users. It's 100% free, no registration required.

How can I embed my Soundcloud songs in Header or Footer? (I am not advanced user for coding).

I will really appreciate your help for improving my site.

Kind regards.

share|improve this question

1 Answer

Soundcloud should give you a snippet of code. Put it in your footer box, advanced customizing, like this:

<div id="mysoundcloud">
<THIS IS YOUR CODE FROM SOUNDCLOUD>
</div>

Then, in your CSS BOX, advanced customizing, do this:

#mysoundcloud {display: none;}
.homepage #mysoundcloud {display: block;}

This will play your music on your homepage, only.

If you want soundcloud in a particular gallery, you can put that code from soundcloud right into the gallery description area, like this:

<html>
soundcloud code here
</html>
share|improve this answer
I was able to insert the link. Thanks. How could I activate by default the sound when Homepage is launched? Now, it's inserted the link, and there's a play button to trigger the music. – Graphene Mar 26 '12 at 3:05
Hi, that should be a function of soundcloud. But I should warn you, having music start automatically turns some people off. Be sure to have a way to mute your music/sounds easily available to your visitors. – Andy Williams Mar 26 '12 at 3:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.