how the heck do you get songs with track number 0 off musicbrainz
is that a busted trm or smoething.
cikkolata
delete a TRM
warewolf
anything I can do about it?
cikkolata
work out which TRM it is, and then delete the one from the wrong song
I've never had to do it myself though
SenRepus
i have, a lot
its when two songs on the same album are given the same TRM
basicly human error, putting the TRM for one track onto a different track
warewolf
interesting
SenRepus
if you go into the tagger, look up the track with the zero
if oyu click on the song you can get to the TRMs to delete them
just make a track Zero glitch note on your mod and itll pass
dupuy
cikkolata, the combining forms may be the normalized ones; look for something that may allow you to disable normalization (or if it's off, to turn it on)
shouldn't it be netherlands rather than netherland?
ruaok
I guess since the page is all in english it should...
somniloquy joined the channel
cikkolata prods the page
cikkolata
I wonder why it scrolls sideways
g0llum has quit
g0llum joined the channel
dupuy joined the channel
ruaok
g0llum: hey
cikkolata
I wish I didn't suck at sql.
UserErr0r`
hey are any of you good with html, i cant figure something out atm
ruaok
try me
UserErr0r`
for some reason in my table im not getting the border between cells, but i get the outside border
lgonze joined the channel
ruaok
UserErr0r`: your cellspacing is probably 0
set it to 1 or use border="1"
UserErr0r`
if i do borders="1" i get the ugly bevel look
ruaok
the adjust your cellspacing
UserErr0r`
i have that, but i still dont see inside borders
cikkolata
are you using css for the (original) border?
UserErr0r`
yes
cikkolata
I think you need to set the border of the <td>s too then
cikkolata thinks
UserErr0r`
but if i do that, then where the cells touch theres the left border for one cell touching the right border from another cell, resulting in a thicker border
cikkolata
I think you can also set the <table> background to fake the borders and then set the <td> backgrounds to the colour you want
been a while since I've used tables
UserErr0r`
do you use divs now?
cikkolata
yeah
and I haven't had any table-based data to need a table for
UserErr0r`
i want to use divs for this, but then i get the same problem, wherever the divs touch eachother, theres a thicker border
cikkolata thinks harder
and i dont want to make seperate classes so some of the divs are missing a border
Muti
}
cikkolata
I was just about to say border-collapse
but I had to google it for the name >_<
UserErr0r`
i thought that wasnt supported in the standard though
cikkolata
seems to be in css2
Muti
I believe it is, I usually have the w3c validate my css
well, you'll see that I've defined styles for table and th,td
UserErr0r`
i sewe
see
ill just put style="border-collapse: collapse;" in the table, dont give the table a class, and give each <td> the class that has the border attributes (with the border-collapse: collapse; not there)
Muti
yes, although it's cleaner to separate CSS and HTML
UserErr0r`
the border-collapse is something that'll probably stay static until i completely redo the design, meanwhile the other attributes like color and size i may change at any time.. that's how i prefer to do my css (static is in the html, things that are common in multiple items or that i'd like to change easily in the future in the css)
(if that made sense)
Muti
ok, cool..
yeah
UserErr0r`
hmm
is cursor manipulation supported/standard?
btw ty Muti and cikkolata
cikkolata
you're welcome.
I think it's standard
I've seen too many crosshair cursors to ever want to think about changing it.
UserErr0r`
lol
it fits in with my theme, i wouldn't be using it "because i can and it looks pretty!"
cikkolata
the only ones I've seen that have made me think "ooh" is the help one over acronyms
cikkolata goes back to fighting sql
UserErr0r`
i never really understood this
if i want to apply some anchor styles to my .navigation class... do i want .navigation a:hover, or is there another method that i need/want
cikkolata
that seems right
Pipian has quit
UserErr0r`
sorry for being an html newbie and turning this into a temporary html help channel
cikkolata
we weren't exactly talking about anything else :P
UserErr0r`
but lets say i have a navigation bar, which is a table, each link is in its own cell...
how would i get the effect where if the cursor is over any cell, the cell background changes colors (also, the cell's whitespace acts as a link for the <a> inside it)
Pipian joined the channel
cikkolata
I set the <a> to display: block to do that
this is reminding me just how little html/css I've done lately :P
UserErr0r`
ah, that's what it is
thanks
Laggazo
Laggazo has joined #MusicBrainz
rjmunro joined the channel
UserErr0r`
how do i make 2 classes share the same anchor styles, if possible :x
cikkolata
.class1 a:stuff, .class2 a:stuff maybe?
UserErr0r`
oooh right, duh :\
i kept thinking something like .class1 .class2 a:hover
cikkolata
I think that would be an <a> inside a .class2 inside a .class1