Page 2 of 2

Posted: Wed Dec 13, 2006 1:42 am
by DonGato
Icons, what icons?

Posted: Sat Dec 16, 2006 10:55 am
by grejpfrut
very simple trick to have green completed and all watched animes in mylist - just save anidbstyle.css on hdd and add this

Code: Select all

#layout-content div.mylist_all span.all_watched
{
	color: darkgreen;
}
to this file. host it somewhere and change css in profile :]

Hymmm

Posted: Mon Dec 18, 2006 8:57 am
by defsyfe
I was thinking about this and I'm not sure if anidb allows it but I hope it does...

Can you host the CSS file locally? when I test things on sites I host the file locally so I don't have to keep uploading to check my layout.... If so this would make it about a zillion times easier for anyone who wants to make or change their CSS file but doesn't have a good or reliable host.

Re: Hymmm

Posted: Mon Dec 18, 2006 12:55 pm
by ricce
defsyfe wrote:I was thinking about this and I'm not sure if anidb allows it but I hope it does...

Can you host the CSS file locally? when I test things on sites I host the file locally so I don't have to keep uploading to check my layout.... If so this would make it about a zillion times easier for anyone who wants to make or change their CSS file but doesn't have a good or reliable host.
Well, it a matter if your browser support it, some browser may not....

Anyway try an URL like:
file:///c:/Document and Settings/username/My Documents/filename.css

ie. prefix the path with file:/// and change all \ to /

Posted: Mon Dec 18, 2006 1:20 pm
by AnimeOtaku
file links as far as I know aren't suported from Firefox & Co. (except you enter the link directly in the address bar).

and spaces have to be replaced by a %20 (or the browser do it for you)

Posted: Wed Dec 20, 2006 6:59 am
by defsyfe
BLEH. IE7 is the only one that supports it. Opera and Firefox don't appear to...

Now I have to find a reliable host... >.<

*shakes fist*

Yes!

Posted: Wed Dec 20, 2006 7:23 am
by defsyfe
Yay! I used my ISP... Finally got css going... To bad I didn't realize you could edit the CSS earlier... I would have had something really cool going by now. Now I'll have to wait till after christmas to edit anything major. Looks like it'll be fun though. =)

Posted: Wed Dec 20, 2006 9:07 am
by Elias
defsyfe wrote:BLEH. IE7 is the only one that supports it. Opera and Firefox don't appear to...

Now I have to find a reliable host... >.<

*shakes fist*
In Opera replacing style sheets to your own local file is available here:
right click / Edit site preferrences / Display / My style sheet

Posted: Wed Dec 20, 2006 7:21 pm
by grejpfrut
for everybody, who can't host this on own sites:
http://www.zlotniki.pl/~jaroslaw-dzieni ... _green.css

this may be slow :P it's my isp server :)

Posted: Sun Jan 14, 2007 6:34 am
by defsyfe
This doesn't work anymore I tried looking through things to find if something was overwriting it but I can't find anything...

Was the watched class removed?

anyone got a fix?

Posted: Sun Jan 21, 2007 11:40 am
by Taags
I want the green back hehe :)

Posted: Tue Feb 06, 2007 7:40 pm
by Desmond
if i remember correct, the stats have been bold if complete and green if all_watched - bold and green for both
also - sorry, i am not certain again - when the problem apeared at first - both features were gone and after a while the 'bold'-status has been repaired

the problem here:
// from anidbstyle.css
#layout-content div.mylist_list tr.all_watched td.stats
{
font-weight: bold;
}
the entry in anidbstyle.css for the 'bold'-status is named 'all_watched' and not 'complete'
also the entries in the generated pages have the name <tr class="g_... all_watched" id="...">

also from anidbstyle.css
#layout-content div.mylist_list tr.complete td.stats,
in the css also apeares a line for completed animes - but without any parameters and there is never a parameter 'complete' in the generated site of my_list

so i think while repairing these features the 1st time somehow
- the parameter 'complete' has been replaced by 'all_watched' but it is still connected to the function/class/methode of 'check if complete'
- the function 'check if all_watched' is still there, but isn't connected to anything

because i have no idea of the code that is creating the websites i can only speculate from here on and there is the chance that this could more handicap than help

hope this helps a bit ... i'm missing the green color in mylist for watched animes too ^_^

ps. would be a pleasure to help out with this some more

Posted: Sat Feb 10, 2007 2:14 am
by csimi
Thx Desmond i didnt notice that bug, with this i finally made it :P
for any1 who wants the green stuff back:

line1973:
#layout-content div.mylist_list tr.all_watched td.stats
->
#layout-content div.mylist_list tr.complete td.stats

line2797:
#layout-content div.mylist_all span.all_watched
->
#layout-content div.mylist_all tr.all_watched td.stats

and i think the all watched animes shouldnt be bold so remove the
font-weight: bold;
(line 2800)

btw hosted version: http://csimi.ph33r.hu/anidbstyle.css or http://csimi.ph33r.hu/anidbstyle_hacks.css (for internet explorer or dunno)

Posted: Sun Feb 11, 2007 11:34 am
by Desmond
csimi wrote: and i think the all watched animes shouldnt be bold
why do you think they shouldnt?
even if they are full watched - they are still full downloaded and not incomplete for some reason now.

and ... before the bug occured, series full downloaded and full watched always have been bold and green - so line 2800 was an original one.