Jump to content

download links


jibo

Recommended Posts

<table><tr><td>song name</td><td>download</td></tr><tr><td>1. song #1</td><td><a href='some_file_location'>link</a></td></tr><tr><td>2. song #2</td><td><a href='some_file_location'>link</a></td></tr><tr><td>3. song #3</td><td><a href='some_file_location'>link</a></td></tr><tr><td>4. song #4</td><td><a href='some_file_location'>link</a></td></tr><tr><td>5. song #5</td><td><a href='some_file_location'>link</a></td></tr></table>

Link to comment
Share on other sites

Okay, upload all the songs to your host.Then just put a normal link to them on the table.It will automatically download. It took me some time to figure that out too but I did.

<a href="http://yourdownload.com/downloadlink.mp3/">Song1</a>

Link to comment
Share on other sites

ok thnks, but what about the rest of the lines like to split everything up into its own induvidual cell/box?? plz, sorry t be a pain  :)

You mean like one cell red, the other blue?Well try this code then.Place in header.
<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.red {background-color: #FF0000; color: #000000; font-size: 13px; font-family:times;}</style>

Now where the <td> is in your table, either put <td class="blue> or <td class="red"> in stead of just <td> depending on what you want.

Link to comment
Share on other sites

You mean like one cell red, the other blue?Well try this code then.Place in header.
<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.red {background-color: #FF0000; color: #000000; font-size: 13px; font-family:times;}</style>

Now where the <td> is in your table, either put <td class="blue> or <td class="red"> in stead of just <td> depending on what you want.

no not quite but i do prefer that so thnks, the only problem ow is that the text changes size by itself
<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.red {background-color: #FF0000; color: #000000; font-size: 13px; font-family:times;}</style> <table><tr><td class="blue">DJ Exotic Tunes</td><td>right click and 'save target as'</td></tr><tr><td>About you shinning</td><td class="blue"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020308522.mp3'>download</a></td></tr><tr><td class='blue'>End of Time (remix)</td><td><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020665194.mp3'>download</a></td></tr><tr><td>Titanic 911</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021057749.mp3'>download</a></td></tr><tr><td class='blue'>4. song #4</td><td><a href='some_file_location'>link</a></td></tr><tr><td>5. song #5</td><td class='blue'><a href='some_file_location'>link</a></td></tr></table>

ive only got half way through then realised what is happening, how can i fix this???

Link to comment
Share on other sites

no not quite but i do prefer that so thnks, the only problem ow is that the text changes size by itself
<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.red {background-color: #FF0000; color: #000000; font-size: 13px; font-family:times;}</style> <table><tr><td class="blue">DJ Exotic Tunes</td><td>right click and 'save target as'</td></tr><tr><td>About you shinning</td><td class="blue"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020308522.mp3'>download</a></td></tr><tr><td class='blue'>End of Time (remix)</td><td><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020665194.mp3'>download</a></td></tr><tr><td>Titanic 911</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021057749.mp3'>download</a></td></tr><tr><td class='blue'>4. song #4</td><td><a href='some_file_location'>link</a></td></tr><tr><td>5. song #5</td><td class='blue'><a href='some_file_location'>link</a></td></tr></table>

ive only got half way through then realised what is happening, how can i fix this???

Oh, I changed the text size myself.Just tell me what size you want it to be.
Link to comment
Share on other sites

Oh, I changed the text size myself.Just tell me what size you want it to be.

i no how t change da size but if u copy da codee into notepad n save as html file n open it ull c what i mean, its in like a pattern of big then smal, big then small n so on av a luk lol :)
Link to comment
Share on other sites

i no how t change da size but if u copy da codee into notepad n save as html file n open it ull c what i mean, its in like a pattern of big then smal,  big then small n so on av a luk lol :)

That's because you have one cell with the class of <td class="blue"> and the other one with just plain.The blue class that I've created has a smaller text size than the default.
Link to comment
Share on other sites

That's because you have one cell with the class of <td class="blue"> and the other one with just plain.The blue class that I've created has a smaller text size than the default.

so if i want these colours how do i make it even, where i want it white do i put the <td class='white'> would this even it out?????????????????
Link to comment
Share on other sites

so if i want these colours how do i make it even, where i want it white do i put the <td class='white'> would this even it out?????????????????

Yes, but use this code if so.
<html><head><style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.red {background-color: #FF0000; color: #000000; font-size: 13px; font-family:times;}td.white{background-color: #FFFFFF; color: #000000; font-size: 13px; font-family:times;}</style> </head><body><table><tr><td class="blue">DJ Exotic Tunes</td><td class="white">right click and 'save target as'</td></tr><tr><td class="white">About you shinning</td><td class="blue"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020308522.mp3'>download</a></td></tr><tr><td class='blue'>End of Time (remix)</td><td class="white"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020665194.mp3'>download</a></td></tr><tr><td class="white">Titanic 911</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021057749.mp3'>download</a></td></tr><tr><td class='blue'>4. song #4</td><td class="white"><a href='some_file_location'>link</a></td></tr><tr><td class="white">5. song #5</td><td class='blue'><a href='some_file_location'>link</a></td></tr></table></body></html>

Link to comment
Share on other sites

dunt matter lol but i have got 1 more question, can you make it so where it says 'download' or 'link' or w/e its centered in the middle of the box instead of being at the left ahnd side
<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;}td.white {background-color: #FFFFFF; color: #000000; font-size: 13px; font-family:times;}td.green {background-color: #66FF66; color: #000000; font-size: 13px; font-family:times;}</style> <table><tr><td class="green">DJ Exotic Tunes</td><td class='green'>Right Click And 'Save Target As'</td></tr><tr><td class="white">About you shinning</td><td class="blue"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020308522.mp3'>download</a></td></tr><tr><td class='blue'>End of Time (remix)</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020665194.mp3'>download</a></td></tr><tr><td class'white'>Titanic 911</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021057749.mp3'>download</a></td></tr><tr><td class='blue'>Blow my angel Away</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021465327.mp3'>download</a></td></tr><tr><td class='white'>Like A Prayer (Original)</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021981220.mp3'>download</a></td></tr><tr><td class='blue'>Will Be Angel Eyes</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151022422266.mp3'>download</a></td></tr><tr><td class='white'>Shootin Star 24/7 feat. DJ Stonkin</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151023231980.mp3'>download</a></td></tr><tr><td class='blue'>Better Off Bein Blue</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151024046266.mp3'>download</a></td></tr><tr><td class='white'>Dancing In The Dark</td><td class='blue'><a href='http://www.merseystyle.co.uk/uploads/uploads/1151298994.mp3'>download</a></td></tr><tr><td class='blue'>Hardcore 2006 feat. Hixxy</td><td class='white'><a href='http://www.merseystyle.co.uk/uploads/uploads/1151267114.mp3'>download</a></td></tr></table>

you can see what i mean perfcetly on ere. cheers

Link to comment
Share on other sites

Yes, I can. One second.

<style type="text/css">table{border: 1px solid black;}td.blue{background-color: #99FFFF; color: #000000; font-size: 13px; font-family: times;text-align: center;}td.white {background-color: #FFFFFF; color: #000000; font-size: 13px; font-family:times;text-align: center;}td.green {background-color: #66FF66; color: #000000; font-size: 13px; font-family:times; text-align: center;}</style> <table><tr><td class="green">DJ Exotic Tunes</td><td class='green'>Right Click And 'Save Target As'</td></tr><tr><td class="white">About you shinning</td><td class="blue"><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020308522.mp3'>download</a></td></tr><tr><td class='blue'>End of Time (remix)</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151020665194.mp3'>download</a></td></tr><tr><td class='white'>Titanic 911</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021057749.mp3'>download</a></td></tr><tr><td class='blue'>Blow my angel Away</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021465327.mp3'>download</a></td></tr><tr><td class='white'>Like A Prayer (Original)</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151021981220.mp3'>download</a></td></tr><tr><td class='blue'>Will Be Angel Eyes</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151022422266.mp3'>download</a></td></tr><tr><td class='white'>Shootin Star 24/7 feat. DJ Stonkin</td><td class='blue'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151023231980.mp3'>download</a></td></tr><tr><td class='blue'>Better Off Bein Blue</td><td class='white'><a href='http://content.bolt.com/uploads3/audio/streams/8/4/9/1/2/9/849129/music/1151024046266.mp3'>download</a></td></tr><tr><td class='white'>Dancing In The Dark</td><td class='blue'><a href='http://www.merseystyle.co.uk/uploads/uploads/1151298994.mp3'>download</a></td></tr><tr><td class='blue'>Hardcore 2006 feat. Hixxy</td><td class='white'><a href='http://www.merseystyle.co.uk/uploads/uploads/1151267114.mp3'>download</a></td></tr></table>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...