Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 50 51 [52] 53 54 » ... Last »
Jan 31, 2015 8:43 PM

Offline
Aug 2014
432
S-Z said:
Satiriques said:

You can change the color here:


or completely remove it with this:
sorry i meant lines over there http://screenshot.ru/90d75f1297c62d79896cf73067cbb7b9.png


The white borders are actually part of the image used for the category links. So unless you remake the picture, the white border are always gonna be there. However, I removed the borders by reducing the height for the button links and repositioned the background-position accordingly. There you go:


You could always use an image editor to remove the white borders so the circle part doesn't a sharp edge, but it's up to you.

Edit: Damn, I didn't even notice the lines you were talking about until veriti answered lol.
SatiriquesJan 31, 2015 11:37 PM
Jan 31, 2015 11:27 PM

Offline
Nov 2011
304
@S-Z
If you mean lines *above* text, I can't see them neither in Firefox, Chrome nor in IE so you might be the only one seeing those.
I can make a wild guess that your browser is bugged and it shows text-decoration even when color of the text is set to transparent. If I'm right, then you want
td[class^="status"] a { text-decoration: none }
Feb 3, 2015 12:44 AM

Offline
Nov 2014
205
Hi, is there a way to edit the already existing selector "#mal_control_strip"? I basically want to remove the property "left: 0;" and change the "padding: 0;" to "padding-right: 20px;". This should result in the top bar positioning directly over the list.
Feb 3, 2015 10:16 AM

Offline
Nov 2011
304
@Deisicarius
No, you can't. But you can override individual properties using !important or other things that affect specificity. And you'd probably want margin-right because padding won't affect the search bar.
#mal_control_strip {
left: auto !important;
margin-right: 20px !important;
}
Feb 3, 2015 10:16 AM
Offline
Aug 2014
13
Hahaido said:
Anonymoose-N said:
How do I make it so that longer names don't go to the 2nd line and instead, end with a "..."


.animetitle {
display: block;
min-width: 0;
max-width: /*your number*/px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}



I did this and now I have a new problem. The shorter titles get highlighted even if I don't directly hover over them. I'm guessing it is based on the max-width. How do I make it so that the titles only get highlighted when I hover over their letters?
Feb 3, 2015 4:51 PM

Offline
Nov 2014
205
VeriTi said:
@Deisicarius
No, you can't. But you can override individual properties using !important or other things that affect specificity. And you'd probably want margin-right because padding won't affect the search bar.
#mal_control_strip {
left: auto !important;
margin-right: 20px !important;
}
Oh I see, thank you for your help.
Feb 4, 2015 6:05 AM
Offline
Feb 2015
27
Hello Shishio-Kun :D How's it going? I have 2 questions if you would like to help, first I wouldn't have accomplished anything if Iudex hadn't helped me, so a thanks to him!! My questions are; When I scroll down my list, I want my background to stay stable, no repetition, how do I get that to happen? The second is that When I go over a title of an anime/manga in my list it displays a pop up box right next to it, but it's transparent. How can I get an image of that anime/manga to pop up while I go over the title with the mouse? Thank you for reading this and taking your time to consider this! But please answer like you're gonna answer to a newbie lol, because I do not understand anything about this! Thank you once again! Bye
Feb 4, 2015 11:56 AM

Offline
Feb 2010
12661
moebond said:
Hello Shishio-Kun :D How's it going? I have 2 questions if you would like to help, first I wouldn't have accomplished anything if Iudex hadn't helped me, so a thanks to him!! My questions are; When I scroll down my list, I want my background to stay stable, no repetition, how do I get that to happen? The second is that When I go over a title of an anime/manga in my list it displays a pop up box right next to it, but it's transparent. How can I get an image of that anime/manga to pop up while I go over the title with the mouse? Thank you for reading this and taking your time to consider this! But please answer like you're gonna answer to a newbie lol, because I do not understand anything about this! Thank you once again! Bye


These are quick and easy fixes so I just made them for you in your code and posted it below. Would that be ok for you? Fixed the topbar too.

You have to copy everything in bold to your CSS edit box and replace the old codes.



If you want in-depth explanations on how, search and try the CSS tutorials first and then post back if one of those doesn't make sense then I can try to break it down more. You don't have to do and read them all. Just find the one relevant to what you're trying to do, like the "filling in your missing covers tutorial". I'm only redirecting you here cuz understand I'm REALLY pressed for time and don't want to write explanations when the tutorials might cover that already, but like I said if one doesn't make sense post back or in the tutorial and tell us what you had trouble with:
http://myanimelist.net/forum/?topicid=419405
Feb 4, 2015 12:31 PM
Offline
Feb 2015
27
Shishio-kun said:
moebond said:
Hello Shishio-Kun :D How's it going? I have 2 questions if you would like to help, first I wouldn't have accomplished anything if Iudex hadn't helped me, so a thanks to him!! My questions are; When I scroll down my list, I want my background to stay stable, no repetition, how do I get that to happen? The second is that When I go over a title of an anime/manga in my list it displays a pop up box right next to it, but it's transparent. How can I get an image of that anime/manga to pop up while I go over the title with the mouse? Thank you for reading this and taking your time to consider this! But please answer like you're gonna answer to a newbie lol, because I do not understand anything about this! Thank you once again! Bye


These are quick and easy fixes so I just made them for you in your code and posted it below. Would that be ok for you? Fixed the topbar too.

You have to copy everything in bold to your CSS edit box and replace the old codes.



If you want in-depth explanations on how, search and try the CSS tutorials first and then post back if one of those doesn't make sense then I can try to break it down more. You don't have to do and read them all. Just find the one relevant to what you're trying to do, like the "filling in your missing covers tutorial". I'm only redirecting you here cuz understand I'm REALLY pressed for time and don't want to write explanations when the tutorials might cover that already, but like I said if one doesn't make sense post back or in the tutorial and tell us what you had trouble with:
http://myanimelist.net/forum/?topicid=419405
That's perfect!!! Thank you so much!!! :D :D There are no notifications here they should fix that :( I'm sure you could lol! Thanks so much!!
Feb 4, 2015 12:47 PM

Offline
Feb 2010
12661
Great, btw I think u can follow (watch?) a topic to get notifications? Never tried it tho
Feb 4, 2015 12:53 PM
Offline
Feb 2015
27
Hey, sorry but I have a bit of trouble, I see I mastered it on your list lol gotta admit that's a hot background!! How can I display pics when I go over a title with the mouse? And that top left hand bar? I just want those 2 left and everything is perfect! Can you help please? :)
Feb 4, 2015 1:11 PM

Offline
Feb 2010
12661
Remove top two lines from the fixed CSS, then use the top bar you want from this page, under imported topbars (read instructions):
http://myanimelist.net/forum/?topicid=449097

Now search your CSS for codes named "hide" in them and remove them, and the codes in the brackets after, then you can try the cover tutorial that causes covers to appear on title point (see the list of topics I linked you to).
Feb 4, 2015 1:13 PM
Offline
Feb 2015
27
Ok thanks, I'll do that tomorrow :) time to get kinky right now lol. Bye bye!! I'll keep on touch on all updates!!
Feb 4, 2015 6:33 PM

Offline
Jun 2014
447
I have a question. How do people add youtube videos straight onto their profile design? I know how to add the code to the page, but how do they make it look like this?



Sorry if this has been answered, I looked everywhere, but couldn't find anything!

music is life...
Feb 4, 2015 11:57 PM
Offline
Feb 2015
27
Shishio-kun said:
Remove top two lines from the fixed CSS, then use the top bar you want from this page, under imported topbars (read instructions):
http://myanimelist.net/forum/?topicid=449097

Now search your CSS for codes named "hide" in them and remove them, and the codes in the brackets after, then you can try the cover tutorial that causes covers to appear on title point (see the list of topics I linked you to).
I cant find anything to help me with the images poping up when I go over it with the cursor! I dont know what to do
CheckMateBassy said:
I have a question. How do people add youtube videos straight onto their profile design? I know how to add the code to the page, but how do they make it look like this?



Sorry if this has been answered, I looked everywhere, but couldn't find anything!
Ive seen a post how you can add youtube videos when you edit the "about me" Im sure you use the same could, see if that can help, I dont really know myself!
Feb 5, 2015 1:34 AM

Offline
Feb 2010
12661
Smexy-Kun said:
Shishio-kun said:
Remove top two lines from the fixed CSS, then use the top bar you want from this page, under imported topbars (read instructions):
http://myanimelist.net/forum/?topicid=449097

Now search your CSS for codes named "hide" in them and remove them, and the codes in the brackets after, then you can try the cover tutorial that causes covers to appear on title point (see the list of topics I linked you to).
I cant find anything to help me with the images poping up when I go over it with the cursor! I dont know what to do


Hmm curious, why aren't you using the entire code I posted? You still have the problem of the background skipping, and if you leave all those codes at the bottom which I took out for you, you will have errors if you use other topbars. You need to replace your entire code with the whole code I gave you to fix the errors with the background and future topbars.

Like I said, go to the link I gave you before:
http://myanimelist.net/forum/?topicid=419405
theres a part for covers (DVD and manga covers for your list). There's a topic name that says "Display covers when pointing to title"
Shishio-kunFeb 5, 2015 1:43 AM
Feb 5, 2015 1:42 AM

Offline
Feb 2010
12661
CheckMateBassy said:
I have a question. How do people add youtube videos straight onto their profile design? I know how to add the code to the page, but how do they make it look like this?



Sorry if this has been answered, I looked everywhere, but couldn't find anything!


Most of those profile graphics are made in a graphic design program and split into pieces there. Then the pieces are posted to the profile one by one. If you look at the images in the graphic by right clicking or dragging them out you'll see that. So when you make that profile graphic, you need to leave a gap in it (for the player) before you cut it into pieces with Guillotine or Slice tool. The gap must be equal to a video player's height and width (posted the dimensions on the front page recently). Now when you post the pieces to your profile graphic, you will post that Youtube player as one of the pieces in your profile, to fill the gap you originally made.

We might also discuss it in this topic, and it has the video on making/slicing the profile graphic for beginners. I don't think I explained Youtube players within graphics in the video tho:
http://myanimelist.net/forum/?topicid=544347&show=0
Shishio-kunFeb 5, 2015 1:45 AM
Feb 5, 2015 4:47 PM

Offline
Jun 2014
447
Shishio-kun said:
CheckMateBassy said:
I have a question. How do people add youtube videos straight onto their profile design? I know how to add the code to the page, but how do they make it look like this?



Sorry if this has been answered, I looked everywhere, but couldn't find anything!


Most of those profile graphics are made in a graphic design program and split into pieces there. Then the pieces are posted to the profile one by one. If you look at the images in the graphic by right clicking or dragging them out you'll see that. So when you make that profile graphic, you need to leave a gap in it (for the player) before you cut it into pieces with Guillotine or Slice tool. The gap must be equal to a video player's height and width (posted the dimensions on the front page recently). Now when you post the pieces to your profile graphic, you will post that Youtube player as one of the pieces in your profile, to fill the gap you originally made.

We might also discuss it in this topic, and it has the video on making/slicing the profile graphic for beginners. I don't think I explained Youtube players within graphics in the video tho:
http://myanimelist.net/forum/?topicid=544347&show=0


Thank you so much, I understand now. Would you happen to know the dimensions of a standard youtube video? or how I would find that out?

music is life...
Feb 5, 2015 4:57 PM

Offline
Feb 2010
12661
Copied from the front page

Looks like 425 high 355 wide
Feb 5, 2015 5:04 PM

Offline
Jun 2014
447
Thank you for your help. Your tutorials are amazing! <3

music is life...
Feb 6, 2015 9:17 AM

Offline
Jan 2015
50
Can you make requests for making a custom list with an anime of my choice?
Feb 6, 2015 4:12 PM

Offline
Aug 2013
520
masterpax1 said:
Can you make requests for making a custom list with an anime of my choice?
yes, in the request topic, might not be taken though




Feb 7, 2015 4:14 AM

Offline
Nov 2014
205
Hi, I have two questions:
1. Can someone tell me if shared anime is showing and if, link a screenshot please.
2. How do I align the search box and search button? I have tested out the few methods that I known, but it doesn't seem to fix it.

Thanks in advance and sorry for asking so many questions. ^^
BalphagoreFeb 7, 2015 8:36 AM
Feb 7, 2015 4:15 PM

Offline
Feb 2010
12661
Deisicarius said:
Hi, I have two questions:
1. Can someone tell me if shared anime is showing and if, link a screenshot please.
2. How do I align the search box and search button? I have tested out the few methods that I known, but it doesn't seem to fix it.

Thanks in advance and sorry for asking so many questions. ^^


1. Not sure if you meant the actual page or the link on your list, its all showing normally tho in Firefox
list link: http://i.imgur.com/vsec31g.png
our shared anime: http://i.imgur.com/SHGFCcM.png

2. Remove the colors when done moving them around

img#searchListButton
{
background: red !important;
margin-top: 2px !important;
position: relative !important;
}

#mal_cs_powered #search #searchBox
{
background: blue !important;
top: -6px !important;
position: relative !important;
}
Feb 8, 2015 4:16 AM

Offline
Nov 2014
205
Shishio-kun said:
Deisicarius said:
Hi, I have two questions:
1. Can someone tell me if shared anime is showing and if, link a screenshot please.
2. How do I align the search box and search button? I have tested out the few methods that I known, but it doesn't seem to fix it.

Thanks in advance and sorry for asking so many questions. ^^


1. Not sure if you meant the actual page or the link on your list, its all showing normally tho in Firefox
list link: http://i.imgur.com/vsec31g.png
our shared anime: http://i.imgur.com/SHGFCcM.png

2. Remove the colors when done moving them around

img#searchListButton
{
background: red !important;
margin-top: 2px !important;
position: relative !important;
}

#mal_cs_powered #search #searchBox
{
background: blue !important;
top: -6px !important;
position: relative !important;
}
Yes I meant list link, I just wanted to check if it showed normally. Either way thanks for the help, everything worked perfectly.

A little bit off topic but does my list count as a minimalist list layout? I was thinking of entering the contest.
Feb 8, 2015 9:03 AM

Offline
Aug 2013
520
Deisicarius said:
Shishio-kun said:


1. Not sure if you meant the actual page or the link on your list, its all showing normally tho in Firefox
list link: http://i.imgur.com/vsec31g.png
our shared anime: http://i.imgur.com/SHGFCcM.png

2. Remove the colors when done moving them around

img#searchListButton
{
background: red !important;
margin-top: 2px !important;
position: relative !important;
}

#mal_cs_powered #search #searchBox
{
background: blue !important;
top: -6px !important;
position: relative !important;
}
Yes I meant list link, I just wanted to check if it showed normally. Either way thanks for the help, everything worked perfectly.

A little bit off topic but does my list count as a minimalist list layout? I was thinking of entering the contest.
Nope it does not, because you have multiple characters on screen simultaneously.




Feb 8, 2015 1:27 PM

Offline
Jan 2013
259
Parts of my list design that are on dropbox are often not loading. How can I fix this? Any better services to keep list designs?
Feb 8, 2015 2:06 PM

Offline
Aug 2013
520
Ukatoid said:
Parts of my list design that are on dropbox are often not loading. How can I fix this? Any better services to keep list designs?
is it your dropbox or somebody else's? Further more is it pictures or codes?




Feb 8, 2015 2:13 PM

Offline
Dec 2013
10536
Hello, I have a problem with my list. Quite a few covers do not appear in it and it's kinda annoying. I checked the section in this club about this problem and tried a few methods suggested there but they didn't work or I just messed up somewhere. If there's a solution, could someone tell me how to fix?

http://myanimelist.net/animelist/robis798

Here's my list, the layout I'm using should be familiar.
Feb 8, 2015 2:16 PM

Offline
Aug 2013
520
robis798 said:
Hello, I have a problem with my list. Quite a few covers do not appear in it and it's kinda annoying. I checked the section in this club about this problem and tried a few methods suggested there but they didn't work or I just messed up somewhere. If there's a solution, could someone tell me how to fix?

http://myanimelist.net/animelist/robis798

Here's my list, the layout I'm using should be familiar.
well when you generate your own cover codes you have to be sure to use the right format, i.e. #more .animetitle etc.




Feb 8, 2015 2:20 PM

Offline
Dec 2013
10536
Oiomi-chan said:
robis798 said:
Hello, I have a problem with my list. Quite a few covers do not appear in it and it's kinda annoying. I checked the section in this club about this problem and tried a few methods suggested there but they didn't work or I just messed up somewhere. If there's a solution, could someone tell me how to fix?

http://myanimelist.net/animelist/robis798

Here's my list, the layout I'm using should be familiar.
well when you generate your own cover codes you have to be sure to use the right format, i.e. #more .animetitle etc.

Well, I did not generate anything yet. I tried using the '#more' but either it didn't work or I don't know how and at what part of the large code should I place it.
Feb 8, 2015 2:42 PM

Offline
Aug 2013
520
robis798 said:
Oiomi-chan said:
well when you generate your own cover codes you have to be sure to use the right format, i.e. #more .animetitle etc.

Well, I did not generate anything yet. I tried using the '#more' but either it didn't work or I don't know how and at what part of the large code should I place it.
there should be an import at the top of the code for the covers, you'll have to replace that one with one you make yourself.




Feb 9, 2015 2:13 PM

Offline
Jan 2013
259
Oiomi-chan said:
Ukatoid said:
Parts of my list design that are on dropbox are often not loading. How can I fix this? Any better services to keep list designs?
is it your dropbox or somebody else's? Further more is it pictures or codes?

My dropbox. It's both pictures and (some) code. They load about 50% of the time.
Feb 9, 2015 2:22 PM
Offline
Feb 2015
4
Hey guys, sorry if I'm not posting this in the correct place, but I saw a profile and would really like to emulate it.

http://myanimelist.net/animelist/lez_derp

I really like the simplicity of it and the small circular pictures next to the names in the list. The only thing i would change is the top bar color. I tried to ask the profile owner how they did it but never received a reply. Could someone show me how to do this, I'm familiar with the beginners guide and viewing the page source, but i couldn't figure it out.


Please and Thank You
Feb 9, 2015 2:31 PM

Offline
Aug 2013
63


the category link " currently watching" is not showing the color white
Feb 9, 2015 2:35 PM

Offline
Aug 2013
520
Ukatoid said:
Oiomi-chan said:
is it your dropbox or somebody else's? Further more is it pictures or codes?

My dropbox. It's both pictures and (some) code. They load about 50% of the time.
well that's interesting... I would recommend moving the pics to imgur or some other picture host, but concerning the codes I don't really know, are they MAL-safe? if so paste them in the MAL css section... though I have never seen any problems such as those before.. edit: I have now tried viewing your list about 10 times using using complete refresh and haven't encountered the problem. It might be that your connection to dropbox times out due to large files or the like.

tanoshiibear said:


the category link " currently watching" is not showing the color white
that is because of MAL's illogical way of numbering the buttons and the fact that you have selected status 2 through 7 for white background, but MAL uses 1 through 4 an 6 and 7 meaning number 5 was rendered redundant.
Pico-tanFeb 9, 2015 2:50 PM




Feb 9, 2015 8:33 PM

Offline
Aug 2014
432
When I hover over the wallpaper in this list I made, I get this:



here's the list: http://myanimelist.net/animelist/tearz1d
Feb 9, 2015 8:41 PM

Offline
Feb 2010
12661
Satiriques said:
When I hover over the wallpaper in this list I made, I get this:



here's the list: http://myanimelist.net/animelist/tearz1d


Hmm I don't see that? Maybe its a Chrome or super widescreen thing. I see just the amazing Jirbil pic
Feb 9, 2015 9:49 PM

Offline
Aug 2014
432
Shishio-kun said:
Satiriques said:
When I hover over the wallpaper in this list I made, I get this:



here's the list: http://myanimelist.net/animelist/tearz1d


Hmm I don't see that? Maybe its a Chrome or super widescreen thing. I see just the amazing Jirbil pic


Weird, doesn't seem to do it anymore :|. Closing the browser seems to have fixed the problem for now I guess.

Edit: nevermind, it did it again. The "clickable" zone seems to grow over time. I'm not quite sure what cause this, I'll try to find a way to easily reproduce it tommorow.

Edit2: I found the way to reproduce it, you need to scroll down the list and put your cursor on the wallpaper. I also noticed that the clickable zone is after 1080 pixels (or the vertical size of your window), not sure if it has something to do with the wallpapers. I'm really tired I'll try to check it out tommorow

Edit3: It has something to do with that code and it also does it on firefox.:



Here's the wallpaper if you wanted it: http://i.imgur.com/1OzqhY7.png
SatiriquesFeb 10, 2015 8:10 AM
Feb 10, 2015 11:14 AM

Offline
Aug 2013
63
Oiomi-chan said:
Ukatoid said:

My dropbox. It's both pictures and (some) code. They load about 50% of the time.
well that's interesting... I would recommend moving the pics to imgur or some other picture host, but concerning the codes I don't really know, are they MAL-safe? if so paste them in the MAL css section... though I have never seen any problems such as those before.. edit: I have now tried viewing your list about 10 times using using complete refresh and haven't encountered the problem. It might be that your connection to dropbox times out due to large files or the like.

tanoshiibear said:


the category link " currently watching" is not showing the color white
that is because of MAL's illogical way of numbering the buttons and the fact that you have selected status 2 through 7 for white background, but MAL uses 1 through 4 an 6 and 7 meaning number 5 was rendered redundant.


Thanks!
Feb 11, 2015 5:37 AM

Offline
Mar 2013
287
@Satiriques
Yeah, if you CTRL+A your list, we clearly see the delimitations of this invisible link on the background : [spoiler]

http://i.imgur.com/cdL7WsP.jpg
_____________________________________________________________

Come visit the Rec club! Everyone gets confused as to what they want to watch or read next. :T

Here is the Official Rec Club list of Recommendations!
Feb 11, 2015 6:11 AM

Offline
Aug 2014
432
blob said:
@Satiriques
Yeah, if you CTRL+A your list, we clearly see the delimitations of this invisible link on the background : [spoiler]

http://i.imgur.com/cdL7WsP.jpg

That's a great way to show it, thanks.
Feb 13, 2015 11:00 AM

Offline
Aug 2013
63
Oiomi-chan said:
Ukatoid said:

My dropbox. It's both pictures and (some) code. They load about 50% of the time.
well that's interesting... I would recommend moving the pics to imgur or some other picture host, but concerning the codes I don't really know, are they MAL-safe? if so paste them in the MAL css section... though I have never seen any problems such as those before.. edit: I have now tried viewing your list about 10 times using using complete refresh and haven't encountered the problem. It might be that your connection to dropbox times out due to large files or the like.

tanoshiibear said:


the category link " currently watching" is not showing the color white
that is because of MAL's illogical way of numbering the buttons and the fact that you have selected status 2 through 7 for white background, but MAL uses 1 through 4 an 6 and 7 meaning number 5 was rendered redundant.


wait, but it stills does not work.
currently watching is still not white, why?



Feb 13, 2015 11:12 AM

Offline
Aug 2014
432
.status_selected a[href*="status=1"], .status_not_selected a[href*="status=1"]{
background-color: white!important;
}

something above your normal code is changing it, !important takes priority
Feb 13, 2015 12:27 PM

Offline
Aug 2013
63
Satiriques said:
.status_selected a[href*="status=1"], .status_not_selected a[href*="status=1"]{
background-color: white!important;
}

something above your normal code is changing it, !important takes priority


:(
!important
doesnt work!!! its still the same! HELP!! PLZ!!!
Feb 13, 2015 12:37 PM

Offline
Aug 2014
432
tanoshiibear said:
Satiriques said:
.status_selected a[href*="status=1"], .status_not_selected a[href*="status=1"]{
background-color: white!important;
}

something above your normal code is changing it, !important takes priority


:(
!important
doesnt work!!! its still the same! HELP!! PLZ!!!

Actually, you don't need the !important, just remove the "Read more at http://myanimelist.net/forum/?topicid=563993#ZCX8orfOiUZdQzcJ.99" above your code. Be careful when you copy and paste cause that link is sometimes gonna be there if you copy from myanimelist.net
Feb 13, 2015 12:46 PM

Offline
Aug 2013
63
Satiriques said:
tanoshiibear said:


:(
!important
doesnt work!!! its still the same! HELP!! PLZ!!!

Actually, you don't need the !important, just remove the "Read more at http://myanimelist.net/forum/?topicid=563993#ZCX8orfOiUZdQzcJ.99" above your code. Be careful when you copy and paste cause that link is sometimes gonna be there if you copy from myanimelist.net



I feel stupid O_O.

thanks bro! btw did you use my code for your list to check the errors? I was freaking out when I realized you had the same list as mine! :D
Feb 13, 2015 1:21 PM

Offline
Aug 2014
432
I feel stupid O_O.

thanks bro! btw did you use my code for your list to check the errors? I was freaking out when I realized you had the same list as mine! :D


Yeah, that's what I usually do because google chrome's inspect feels janky
Feb 15, 2015 10:07 AM

Offline
Feb 2014
123
For some reason, things like tags and types of anime are broken. Moreover, instead of an episode counting, it keeps showing me a chapter one:


...Do you know what's wrong?Here are the codes:
Feb 15, 2015 1:04 PM

Offline
Aug 2013
520
zoropp said:
For some reason, things like tags and types of anime are broken. Moreover, instead of an episode counting, it keeps showing me a chapter one:


...Do you know what's wrong?Here are the codes:
looks like You've gotten your hands on the manga version “〆(^∇゜*)♪




Reply Disabled for Non-Club Members
Pages (159) « First ... « 50 51 [52] 53 54 » ... Last »

More topics from this board

» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )

Shishio-kun - Jul 21, 2017

381 by KabukiChouNights »»
Sep 13, 10:56 AM

» theme help

threat - Jul 5

5 by Zaryf »»
Aug 21, 5:46 AM

» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )

Valerio_Lyndon - Apr 19, 2018

1261 by KiranaStarr »»
Aug 16, 5:48 PM

» [CSS] ⭐️ Customize your List Cursor + Cursor Fixes

Shishio-kun - Mar 8, 2021

30 by Shishio-kun »»
Jul 28, 3:17 AM

» How To Have Different Banner/Cover image & Background Image For Manga & Anime Lists

YasminaRegina - Jul 25

2 by YasminaRegina »»
Jul 26, 1:02 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login