Author Topic: Boxed OST HTML Help.  (Read 992 times)

Offline jouni555

  • Member
  • Posts: 5
Boxed OST HTML Help.
« on: March 14, 2010, 02:16:04 PM »
I want to know how to make the Tracklist like in here.

http://bakabt.me/151179-basilisk-music-collection.html

I'm using "Boxed OST Template" but adding the Tracklist makes it very long.

And it would be better to know how to make my offer like that.

Offline Takeshi

  • Member
  • Posts: 5119
  • Animation whore
Re: Boxed OST HTML Help.
« Reply #1 on: March 14, 2010, 03:19:31 PM »
Check my tracker profile. ;)

EDIT: Basically, you replace the current code with this one. Also, as you may see, "300px" determines how long you want it to be despite how long the track names might be.

Moreover, may I suggest you replace:
Code: [Select]
font-size: medium;
with
Code: [Select]
font-size: small;

It makes it look way more sleek.
« Last Edit: March 14, 2010, 03:26:23 PM by Takeshi »

Offline yobbin2000

  • Member
  • Posts: 59
Re: Boxed OST HTML Help.
« Reply #2 on: March 14, 2010, 11:01:27 PM »
So if I understand correctly you want the tracklist to be a drop down menu instead of just a big list thats always displayed?  If so im fairly sure the codeing is

<b>Tracklist:</b><br />
<select style="width:200px"><option>Tracklist:
<option>01. Track Name 1
<option>02. Track Name 2
<option>03. Track Name 3
</select><br /><br />

Hope this is helpfull

Offline Xiong Chiamiov

  • Member
  • Posts: 3012
  • I'm gonna tolerate and love the SHIT out of you!
    • changedmy.name
Re: Boxed OST HTML Help.
« Reply #3 on: March 15, 2010, 01:16:44 AM »
You should close your option tags.
Projects of interest: nagi | sheska | bdg
Posts made between 2009-05-09 and 2011-08-26 were in the capacity of staff.  Please read accordingly.

Offline Southrop

  • Staff
  • Member
  • Posts: 5247
Re: Boxed OST HTML Help.
« Reply #4 on: March 15, 2010, 05:35:27 AM »
Although that isn't too important. The code will still be parsed if you don't close the option tags.

Offline Lupin

  • Member
  • Posts: 2169
Re: Boxed OST HTML Help.
« Reply #5 on: March 15, 2010, 12:29:58 PM »
Although that isn't too important. The code will still be parsed if you don't close the option tags.
Yes it will still be parsed but it is bad practice not to close tags that you use.

Offline Southrop

  • Staff
  • Member
  • Posts: 5247
Re: Boxed OST HTML Help.
« Reply #6 on: March 15, 2010, 03:03:18 PM »
I know, I'm aware of that. :)

Although now that I think about it, I think I've always forgotten to close them in my OST torrents...

Offline yobbin2000

  • Member
  • Posts: 59
Re: Boxed OST HTML Help.
« Reply #7 on: March 15, 2010, 09:49:15 PM »
So the code should look more like this?

<b>Tracklist:</b><br />
<select style="width:200px"><option>Tracklist:</option>
<option>01. Track Name 1</option>
<option>02. Track Name 2</option>
<option>03. Track Name 3</option>
</select><br /><br />

thanks for the correction guys.
« Last Edit: March 15, 2010, 10:36:11 PM by yobbin2000 »

Offline Southrop

  • Staff
  • Member
  • Posts: 5247
Re: Boxed OST HTML Help.
« Reply #8 on: March 15, 2010, 11:36:32 PM »
Yes, that would display a drop down list with those 4 options.