Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 129 130 [131] 132 133 » ... Last »
Nov 23, 2020 2:51 AM
Offline
Dec 2019
4
Hello! How do I change the filter wallpaper? I noticed that one is already set but it is not in line with my style (https://imgur.com/Z8u3JBr). How can I set another image?
example: https://dwgkfo5b3odmw.cloudfront.net/img/manga_series_header/580-SJMangaHeaders_ChainsawMan_2000x800.jpg
Thank you in advance!
Nov 23, 2020 2:29 PM

Offline
Feb 2010
12642
beniporag said:
Hey guys, so I'm using clarity style 1, but I want to invert the colors so that it's on "dark mode" if you catch my drift. I've been trying to change the table colors but I don't see any change. Would you guys mind helping me out on this? Thanks!


You should post this in the topic for the layout, I'm sure he will get back to you and he knows the layout way better than I do
https://myanimelist.net/forum/?topicid=1723114
Nov 23, 2020 2:31 PM

Offline
Feb 2010
12642
-CHAR- said:
Hello! How do I change the filter wallpaper? I noticed that one is already set but it is not in line with my style (https://imgur.com/Z8u3JBr). How can I set another image?
example: https://dwgkfo5b3odmw.cloudfront.net/img/manga_series_header/580-SJMangaHeaders_ChainsawMan_2000x800.jpg
Thank you in advance!


I think filter is

#advanced-options {
background-image: url(https://image.myanimelist.net/ui/OK6W_koKDTOqqqLDbIoPAs3rewYOfmmapC9O1f5w3AU);}
Nov 23, 2020 4:18 PM

Offline
Jan 2018
50
Shishio-kun said:
beniporag said:
Hey guys, so I'm using clarity style 1, but I want to invert the colors so that it's on "dark mode" if you catch my drift. I've been trying to change the table colors but I don't see any change. Would you guys mind helping me out on this? Thanks!


You should post this in the topic for the layout, I'm sure he will get back to you and he knows the layout way better than I do
https://myanimelist.net/forum/?topicid=1723114


I found out how to make it dark mode, thanks!
Nov 23, 2020 9:33 PM

Offline
Feb 2010
12642
@-CHAR-
The full code won't fit in a post and it fucks up replies

You can enter the code into Notepad+ and then use the Search option to find the code

But we can just add it to the bottom so you don't need to find it :D
#advanced-options {
background-image: url(https://imgur.com/ymLWCw9.png);}
Nov 30, 2020 10:20 AM

Offline
Apr 2007
40
Hi all,

I'm trying to do some minor code changes to the normal layout but something keeps happening to certain rows the text seems to be misaligned. How do I get these titles in the center?



My list: https://myanimelist.net/animelist/slayra

Thank you!
Nov 30, 2020 2:37 PM

Offline
Feb 2010
12642
slayra said:
Hi all,

I'm trying to do some minor code changes to the normal layout but something keeps happening to certain rows the text seems to be misaligned. How do I get these titles in the center?



My list: https://myanimelist.net/animelist/slayra

Thank you!


Your image is broken

Is this what you're trying to do?


Add this


.list-table .list-table-data .data.title {
text-align: center !important;
padding-left: 112px !important;
}

Dec 1, 2020 4:39 AM

Offline
Apr 2007
40
Shishio-kun said:
slayra said:
Hi all,

I'm trying to do some minor code changes to the normal layout but something keeps happening to certain rows the text seems to be misaligned. How do I get these titles in the center?



My list: https://myanimelist.net/animelist/slayra

Thank you!


Your image is broken

Is this what you're trying to do?


Add this


.list-table .list-table-data .data.title {
text-align: center !important;
padding-left: 112px !important;
}



Shishio-kun said:
slayra said:
Hi all,

I'm trying to do some minor code changes to the normal layout but something keeps happening to certain rows the text seems to be misaligned. How do I get these titles in the center?



My list: https://myanimelist.net/animelist/slayra

Thank you!


Your image is broken

Is this what you're trying to do?


Add this


.list-table .list-table-data .data.title {
text-align: center !important;
padding-left: 112px !important;
}



Hi Shishio-kun,

Oh, sorry, let me see if I can find some image hosting that allows me to post the image.



I still want the titles on the left, just want the ones that for some reason aren't centered in the row to be centered. :/ Not sure how to explain better, sorry. :(

Thank you for the help!
Dec 1, 2020 4:31 PM

Offline
Feb 2010
12642
@slayra


Unfortunately I'm no good at centering text on the default list. You could use this

.list-table .list-table-data .data.title {
height: 30px;
display: flex;
align-items: center;}


but then Ani kuri is thrown off because of all the studios on the right.


A better solution would be to move each uncentered title down manually, but you have to write a new entry for every anime. The number after href is the anime's number when you point to it on your list. These anime are from your completed list btw


/* Bishoujo Senshi Sailor Moon S: Kaguya-hime no Koibito */
.data.title a[href*="/997"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Death March kara Hajimaru Isekai Kyousoukyoku */
.data.title a[href*="/34497"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Fate/Grand Order: Zettai Majuu Sensen Babylonia */
.data.title a[href*="/38084"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Fate/Grand Order: Zettai Majuu Sensen Babylonia - Initium Iter */
.data.title a[href*="/40206"]{
padding-top: 20px !important;
color: green;
display: block;
}


This centered four entries and they have green text so you can see where they are (you remove the green later).

You add a new entry and center it by adding this code to your CSS

.data.title a[href*="/"]{
padding-top: 20px !important;
color: green;
display: block;
}

And after the slash, add the number that appears for the anime when you point to it.
https://i.imgur.com/SVzJpYY.png
https://i.imgur.com/BUVBARf.png
In the example pics I show you how I centered the Bleach title with the code and number



That's the best solution I have and I'm running low on time now and can't look into it any further for quite a while

Would you happen to have a better solution than this? @valerio_lyndon

Shishio-kunDec 1, 2020 4:35 PM
Dec 2, 2020 1:21 AM

Offline
Apr 2007
40
Shishio-kun said:
@slayra


Unfortunately I'm no good at centering text on the default list. You could use this

.list-table .list-table-data .data.title {
height: 30px;
display: flex;
align-items: center;}


but then Ani kuri is thrown off because of all the studios on the right.


A better solution would be to move each uncentered title down manually, but you have to write a new entry for every anime. The number after href is the anime's number when you point to it on your list. These anime are from your completed list btw


/* Bishoujo Senshi Sailor Moon S: Kaguya-hime no Koibito */
.data.title a[href*="/997"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Death March kara Hajimaru Isekai Kyousoukyoku */
.data.title a[href*="/34497"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Fate/Grand Order: Zettai Majuu Sensen Babylonia */
.data.title a[href*="/38084"]{
padding-top: 20px !important;
color: green;
display: block;
}


/* Fate/Grand Order: Zettai Majuu Sensen Babylonia - Initium Iter */
.data.title a[href*="/40206"]{
padding-top: 20px !important;
color: green;
display: block;
}


This centered four entries and they have green text so you can see where they are (you remove the green later).

You add a new entry and center it by adding this code to your CSS

.data.title a[href*="/"]{
padding-top: 20px !important;
color: green;
display: block;
}

And after the slash, add the number that appears for the anime when you point to it.
https://i.imgur.com/SVzJpYY.png
https://i.imgur.com/BUVBARf.png
In the example pics I show you how I centered the Bleach title with the code and number



That's the best solution I have and I'm running low on time now and can't look into it any further for quite a while

Would you happen to have a better solution than this? @valerio_lyndon



Hi Shishio-kun!

Thank you for all your help, it's much appreciated! I'll try both options ^^

I'm sorry for the work, I had no idea it was so complex. :/
Dec 2, 2020 1:31 AM
平沢唯

Offline
Dec 2016
2206
slayra said:


I still want the titles on the left, just want the ones that for some reason aren't centered in the row to be centered. :/ Not sure how to explain better, sorry. :(

Thank you for the help!
Shishio-kun said:
Unfortunately I'm no good at centering text on the default list.

Would you happen to have a better solution than this? @valerio_lyndon

Most of the titles seem to be centered already, it's just the occasional one that hits the exact wrong width that gets buggered. What is causing the problem, at least when I view it, is the add-edit-more section. Try adding this code to the bottom of your CSS:
.add-edit-more { display: none; }


Going into a bit more detail, the add/edit/more section is currently invisible due to "visiblity: hidden" being applied, but is still affecting the positioning of other elements as "visibility" is only a visual change. By adding "display: none" it removes the section from the page flow entirely, both visibly and to other elements.
Dec 2, 2020 1:59 AM

Offline
Apr 2007
40
Valerio_Lyndon said:
slayra said:


I still want the titles on the left, just want the ones that for some reason aren't centered in the row to be centered. :/ Not sure how to explain better, sorry. :(

Thank you for the help!
Shishio-kun said:
Unfortunately I'm no good at centering text on the default list.

Would you happen to have a better solution than this? @valerio_lyndon

Most of the titles seem to be centered already, it's just the occasional one that hits the exact wrong width that gets buggered. What is causing the problem, at least when I view it, is the add-edit-more section. Try adding this code to the bottom of your CSS:
.add-edit-more { display: none; }


Going into a bit more detail, the add/edit/more section is currently invisible due to "visiblity: hidden" being applied, but is still affecting the positioning of other elements as "visibility" is only a visual change. By adding "display: none" it removes the section from the page flow entirely, both visibly and to other elements.


It worked! Thank you so much Valerio_Lyndon and Shishio-kun! *bows* :D
Dec 3, 2020 8:37 PM

Offline
Sep 2019
133
Is it possible to have a image hover on link in the About me Section??
The same way how its done on lists.
I'm tryna do it for characters extended.


Dec 3, 2020 9:09 PM

Offline
Feb 2010
12642
Leospars said:
Is it possible to have a image hover on link in the About me Section??
The same way how its done on lists.
I'm tryna do it for characters extended.


Since there's no CSS option on profiles I don't see how this would be possible. You could set it for only yourself with a custom Stylus script, but no one else would be able to see it.
Dec 3, 2020 9:09 PM

Offline
Feb 2010
12642
Valerio_Lyndon said:
slayra said:


I still want the titles on the left, just want the ones that for some reason aren't centered in the row to be centered. :/ Not sure how to explain better, sorry. :(

Thank you for the help!
Shishio-kun said:
Unfortunately I'm no good at centering text on the default list.

Would you happen to have a better solution than this? @valerio_lyndon

Most of the titles seem to be centered already, it's just the occasional one that hits the exact wrong width that gets buggered. What is causing the problem, at least when I view it, is the add-edit-more section. Try adding this code to the bottom of your CSS:
.add-edit-more { display: none; }


Going into a bit more detail, the add/edit/more section is currently invisible due to "visiblity: hidden" being applied, but is still affecting the positioning of other elements as "visibility" is only a visual change. By adding "display: none" it removes the section from the page flow entirely, both visibly and to other elements.


Nice find!! :D
Dec 4, 2020 10:33 PM

Offline
Sep 2019
133
I'm using the website https://anime-bingo.aikats.us to add some images to my profile and noticed some images aren't very sharp(more prickly). Rem, Kagura and Misaka. Does anyone know the reason for this or how I can fix it


Dec 4, 2020 11:14 PM

Offline
Feb 2010
12642
Leospars said:
I'm using the website https://anime-bingo.aikats.us to add some images to my profile and noticed some images aren't very sharp(more prickly). Rem, Kagura and Misaka. Does anyone know the reason for this or how I can fix it


I'd have to see the exact image on the site but I'm assuming they use low quality images which came up when you used it. It's hard to fix low quality images, you could use Waifu2X to remove some of the low quality effects and make it sharper but that won't make it perfect.

They seem fine now, so try again?


Dec 5, 2020 12:01 AM

Offline
Sep 2019
133
Shishio-kun said:
Leospars said:
I'm using the website https://anime-bingo.aikats.us to add some images to my profile and noticed some images aren't very sharp(more prickly). Rem, Kagura and Misaka. Does anyone know the reason for this or how I can fix it


I'd have to see the exact image on the site but I'm assuming they use low quality images which came up when you used it. It's hard to fix low quality images, you could use Waifu2X to remove some of the low quality effects and make it sharper but that won't make it perfect.

They seem fine now, so try again?



I'd have to see the exact image on the site but I'm assuming they use low quality images

https://i.redd.it/64rr8epkhgs41.jpg
https://pbs.twimg.com/media/ESuUHaXU4AECtUy.jpg
https://static.zerochan.net/Kagura.%28Gin.Tama%29.full.2294850.png

They seem fine now, so try again?

I didn't use the ones form the website, though I know they come out fine, I liked the other images better.
Also I noticed that while on the site as you zoom the image quality would stay the same and high maybe because it's directly linked to the image. But after saving image you'd see the quality difference from a distance.


Dec 5, 2020 1:39 AM

Offline
Feb 2010
12642
Leospars said:
Shishio-kun said:


I'd have to see the exact image on the site but I'm assuming they use low quality images which came up when you used it. It's hard to fix low quality images, you could use Waifu2X to remove some of the low quality effects and make it sharper but that won't make it perfect.

They seem fine now, so try again?




I'd have to see the exact image on the site but I'm assuming they use low quality images

https://i.redd.it/64rr8epkhgs41.jpg
https://pbs.twimg.com/media/ESuUHaXU4AECtUy.jpg
https://static.zerochan.net/Kagura.%28Gin.Tama%29.full.2294850.png

They seem fine now, so try again?

I didn't use the ones form the website, though I know they come out fine, I liked the other images better.
Also I noticed that while on the site as you zoom the image quality would stay the same and high maybe because it's directly linked to the image. But after saving image you'd see the quality difference from a distance.


OK now I see what you're doing.

Maybe the pic of Rem is too big to start. Try starting with a smaller one and see how the quality turns out? Here's two you can try




You can resize images with Imgur btw
https://imgur.com/
Dec 5, 2020 11:34 AM

Offline
Sep 2019
133
Shishio-kun said:
Leospars said:


https://i.redd.it/64rr8epkhgs41.jpg
https://pbs.twimg.com/media/ESuUHaXU4AECtUy.jpg
https://static.zerochan.net/Kagura.%28Gin.Tama%29.full.2294850.png


I didn't use the ones form the website, though I know they come out fine, I liked the other images better.
Also I noticed that while on the site as you zoom the image quality would stay the same and high maybe because it's directly linked to the image. But after saving image you'd see the quality difference from a distance.


OK now I see what you're doing.

Maybe the pic of Rem is too big to start. Try starting with a smaller one and see how the quality turns out? Here's two you can try




You can resize images with Imgur btw
https://imgur.com/


Thanks. It worked


Dec 5, 2020 2:03 PM

Offline
Feb 2010
12642
Leospars said:
Shishio-kun said:


OK now I see what you're doing.

Maybe the pic of Rem is too big to start. Try starting with a smaller one and see how the quality turns out? Here's two you can try




You can resize images with Imgur btw
https://imgur.com/


Thanks. It worked


Awesome. Are you ok with Imgur's resizer? You need it to resize the other images.

Also this Misaka is slightly higher quality than the one you were using, you can drag an image into Google Images to usually find higher quality versions of the pic
Dec 5, 2020 3:57 PM

Offline
Sep 2019
133

Thanks Again :) Misaka picture works well too 👍 Imgur solved most of them.
Though even a large picture like: this is coming out prickly and its the largest image I found.
LeosparsDec 12, 2020 12:00 PM


Dec 5, 2020 4:09 PM

Offline
Feb 2010
12642
Leospars said:
Shishio-kun said:


Awesome. Are you ok with Imgur's resizer? You need it to resize the other images.

Also this Misaka is slightly higher quality than the one you were using, you can drag an image into Google Images to usually find higher quality versions of the pic
Shishio-kun said:


Awesome. Are you ok with Imgur's resizer? You need it to resize the other images.

Also this Misaka is slightly higher quality than the one you were using, you can drag an image into Google Images to usually find higher quality versions of the pic
Shishio-kun said:


Awesome. Are you ok with Imgur's resizer? You need it to resize the other images.

Also this Misaka is slightly higher quality than the one you were using, you can drag an image into Google Images to usually find higher quality versions of the pic

Thanks Again :) Misaka picture works well too 👍 Imgur solved most of them.
Though even a large picture like: this is coming out prickly and its the largest image I found.


Maybe it needs to be cropped in addition to resized?



Imgur also has a cropping tool, but it's kinda annoying to use compared to the ones in aps
Dec 5, 2020 4:42 PM

Offline
Sep 2019
133
That worked is it because its smaller. I checked and saw that the bars size is 150: 200px, 3:4 resolution and the default images from anilist that fit well with no distortion are 230 by 300+. What's the best sizes I can use? And would I be able to get the full image for that Black Clover image without the distortion.


Dec 5, 2020 5:33 PM

Offline
Feb 2010
12642
Leospars said:
That worked is it because its smaller. I checked and saw that the bars size is 150: 200px, 3:4 resolution and the default images from anilist that fit well with no distortion are 230 by 300+. What's the best sizes I can use? And would I be able to get the full image for that Black Clover image without the distortion.


I don't know since I don't use Animebingo, but you could resize the images with Imgur first then see what happens when you upload them to animebingo. Test different sizes and croppings until you get the quality you want.

Everything should probably be cropped and sized down in Imgur to 150px across and 200px high first, I think.
Dec 5, 2020 10:16 PM

Offline
Sep 2019
133
Ok. Once again thanks for the help


Dec 7, 2020 1:15 PM

Offline
Sep 2019
133
This might be a dumb question but I think I might have seen it somewhere before where an image in the about me section glows on hover. Though I'm not sure if its possible and its probably only available in CSS😓


Dec 7, 2020 2:18 PM

Offline
Feb 2010
12642
Leospars said:
This might be a dumb question but I think I might have seen it somewhere before where an image in the about me section glows on hover. Though I'm not sure if its possible and its probably only available in CSS😓


That sounds like a CSS only thing. But maybe it was an animated GIF and it seemed to glow on hover but was just a coincidence.

Can you link the profile? It would be in your history
Dec 7, 2020 4:56 PM

Offline
Sep 2019
133
I was looking at a lot of profiles at the time and can't find it in history or my google activity for some reason sorry>< Maybe I just remembered it wrong and it was only glowing with a link. If I do find it and it is I'll send it.


Dec 8, 2020 11:42 AM

Offline
Sep 2016
13
I am trying to make a background image stay at the same position relative to a element when scrolling down.

I thought that the "position: sticky;" element would work but for some reason it doesn't. I think it isn't even recognized as a element name in the editor if i am not mistaken.



Dec 8, 2020 1:13 PM

Offline
Feb 2010
12642
Rafaeleh said:
I am trying to make a background image stay at the same position relative to a element when scrolling down.

I thought that the "position: sticky;" element would work but for some reason it doesn't. I think it isn't even recognized as a element name in the editor if i am not mistaken.





Did you already solve this problem? I'm not sure what you're trying to do exactly so try any of these

background-attachment: fixed;
background-attachment: scroll;
position: fixed;
position: absolute;

see if any of those work for you
Dec 8, 2020 1:24 PM

Offline
Feb 2010
12642
@Rafaeleh
Also maybe you need to add the ice to
.status-menu-container.fixed:before
or something like that if you're trying to see it when you scroll down the list. Do you know how to make a :before type of code and add backgrounds to it?

Later if this doesn't work I would recommend asking for help in the Clarity topic too since hes much more familiar with the layout
https://myanimelist.net/forum/?topicid=1723114
Shishio-kunDec 8, 2020 2:06 PM
Dec 9, 2020 2:27 AM

Offline
Sep 2016
13
Shishio-kun said:

Did you already solve this problem?

No, not yet ... 😕

Shishio-kun said:

Do you know how to make a :before type of code and add backgrounds to it?

Yea, i managed to do that but also didn't work 😓

Shishio-kun said:

Later if this doesn't work I would recommend asking for help in the Clarity topic too since hes much more familiar with the layout
https://myanimelist.net/forum/?topicid=1723114

Ok, thanks i will ask there if anyone knows 👍


I explained very poorly, so this is what i am trying to do with the ice image :

Dec 9, 2020 2:45 AM

Offline
Feb 2010
12642
Rafaeleh said:
Shishio-kun said:

Did you already solve this problem?

No, not yet ... 😕

Shishio-kun said:

Do you know how to make a :before type of code and add backgrounds to it?

Yea, i managed to do that but also didn't work 😓

Shishio-kun said:

Later if this doesn't work I would recommend asking for help in the Clarity topic too since hes much more familiar with the layout
https://myanimelist.net/forum/?topicid=1723114

Ok, thanks i will ask there if anyone knows 👍


I explained very poorly, so this is what i am trying to do with the ice image :




Oh OK that makes things much clearer- what's the PNG for the ice graphic?
Dec 9, 2020 2:53 AM

Offline
Feb 2010
12642
@Rafaeleh I think you want something like this (goes on the bottom). I used a random icicle graphic I found online, but you can put your own background image in adjust the position with the top code. Does that work? D:

.status-menu-container:before{
background: url(https://i.imgur.com/07Uhi1P.png);
background-size: contain;
top: -10px;
}

.status-menu-container.fixed:before{
position: fixed;
background: url(https://i.imgur.com/07Uhi1P.png);
background-size: contain;
top: -10px;

}




Dec 9, 2020 3:09 AM

Offline
Sep 2016
13
Shishio-kun said:
@Rafaeleh I think you want something like this (goes on the bottom). I used a random icicle graphic I found online, but you can put your own background image in adjust the position with the top code. Does that work? D:

.status-menu-container:before{
background: url(https://i.imgur.com/07Uhi1P.png);
background-size: contain;
top: -10px;
}


.status-menu-container.fixed:before{
position: fixed;
background: url(https://i.imgur.com/07Uhi1P.png);
background-size: contain;
top: -10px;

}






Yea i think it works perfectly like that, i am only having an issue, the graphic doesn't appear on the ".status-menu-container:before" on my computer i will try to see if i can fix that, but the scrolling that i couldn't figure out works perfectly, thanks ! 😀


Edit:

I managed to make it work, i had to put this after the already existing ".status-menu-container:after" if i put before it won't work

.status-menu-container:after{
    top:-25px;
    height: 64px;
    background: url(https://i.imgur.com/rcDaW21.png);
    background-size: cover;
  }


Thanks for the help !
RafaelehDec 9, 2020 4:06 AM
Dec 9, 2020 3:44 PM

Offline
Feb 2010
12642
@Rafaeleh Awesome! The layout looks amazing btw D:
Dec 10, 2020 10:50 AM

Offline
Sep 2016
13
@Shishio-kun Thanks ! 😁
Dec 11, 2020 4:06 AM

Offline
Sep 2019
133
How to change order of columns saw it posted here

https://myanimelist.net/forum/?topicid=1798593

but not answered. I'm tryna put tags in the centre and maybe try a dropdown on hover.
I can move the header itself but I have only been able to move individual tags.


Dec 11, 2020 1:55 PM

Offline
Feb 2010
12642
Leospars said:
How to change order of columns saw it posted here

https://myanimelist.net/forum/?topicid=1798593

but not answered. I'm tryna put tags in the centre and maybe try a dropdown on hover.
I can move the header itself but I have only been able to move individual tags.


Yeah this is really complicated and messy to do with CSS. It might take me a while

Add this code to the bottom of the CSS. It will free up the columns and headers. You have to manually adjust the px numbers after left to get the columns and headers where you want. I use the color coding to make it easier to identify where the part of the table is (really useful if using Inspect Element in Firefox for a live edit which will make things 1000 times easier). Of course when done, remove the color codes. Also you can use right instead of left, and also go negative on the px amount.


/* LIST TABLE */

/* Sort row */

.list-table .list-table-header .header-title.title {
/* Specific sort cell */
background-color: green !important;
}


.list-table .list-table-header .header-title.image {
background-color: red !important;
}

.list-table .list-table-header .header-title.number {
background-color: aliceblue !important;
}






.list-table .list-table-header .header-title.score {
background-color: purple !important;
position: relative;
left: 50px;
}

.list-table .list-table-header .header-title.type{
background-color: orange !important;
position: relative;
left: 100px;
}

.list-table .list-table-header .header-title.progress{
background-color: silver !important;
position: relative;
left: 200px;
}

.list-table .list-table-header .header-title.tags{
background-color: gold !important;
position: relative;
left: 250px;

}

.list-table .list-table-data .data.title{
background-color: orange;}

.list-table .list-table-data .data.image{
background-color: violet;}


.list-table .list-table-data .data.number{
background-color: white;}



.list-table .list-table-data .data.score{
background-color: grey;
position: relative;
left: 50px;}



.list-table .list-table-data .data.type{
background-color: green;
position: relative;
left: 100px;}

.list-table .list-table-data .data.progress{
background-color: violet;
position: relative;
left: 200px;}

.list-table .list-table-data .data.tags {
/* All data cells */
background-color: cyan;
position: relative;
left: 250px;
}




This kinda stuff is borrowed from this tutorial:
https://myanimelist.net/forum/?topicid=1531417
Dec 11, 2020 3:49 PM

Offline
Jun 2012
21
Hi there! Thank you for you huge help to the community during all the years, tutorials and customization techniques. I have a question.

Currently the Premiered column does nothing in terms of applying a filter. I would like to make it clickable and make it apply such filter: https://myanimelist.net/animelist/mylistname?status=6&order=-14

I know it is impossible to add a custom url but maybe you have any workaround for this?
xleDec 11, 2020 4:01 PM
Dec 11, 2020 5:31 PM

Offline
Feb 2010
12642
xnl said:
Hi there! Thank you for you huge help to the community during all the years, tutorials and customization techniques. I have a question.

Currently the Premiered column does nothing in terms of applying a filter. I would like to make it clickable and make it apply such filter: https://myanimelist.net/animelist/mylistname?status=6&order=-14

I know it is impossible to add a custom url but maybe you have any workaround for this?



If you mean to sort by starting premiere year, this is possible:


sort premiere by starting date (sort of)

[url=https://myanimelist.net/animelist/xnl?status=1&order=-14]sort premiere by starting date (sort of)[/url]


You can use that on your About Me and then go straight to the page you want with premiere sorting.

Also, it is possible with CSS to add a menu to each category on your list that opens up and would have two links to sort the list according to premiere dates. But this might take a long time to code with a lot of back and forth, and I have to ask for help with it since I don't know a particular CSS code on the modern list, and also the menu would be tied to a specific anime on each category and won't work anymore when you move it off the category. So I don't recommend it, and you have to be sure you will use it because it could be really time-consuming for volunteers
Dec 11, 2020 5:32 PM

Offline
Jun 2012
21
xnl said:
Hi there! Thank you for you huge help to the community during all the years, tutorials and customization techniques. I have a question.

Currently the Premiered column does nothing in terms of applying a filter. I would like to make it clickable and make it apply such filter: https://myanimelist.net/animelist/mylistname?status=6&order=-14

I know it is impossible to add a custom url but maybe you have any workaround for this?



Found the workaround (I use Modern style btw):


In order to sort your list by Air Date but to show only the Premiered seasons you need first to enable "Air Dates" in List Settings (with of course "Premiered" enabled as well).

1. Through CSS remove the appeared "Air Started" and "Air Finished" columns:
.list-table .list-table-data .data.airing-started {display: none;}
.list-table .list-table-data .data.airing-finished {display: none;}


2. Through CSS remove the "Air Finished" header (the area) and label (the text itself):
.list-table .list-table-header .header-title.finished {display:none;}


3. Through CSS remove the "Premiered" header (the area) and label (the text itself):
.list-table .list-table-header .header-title.started:nth-child(7) {display: none;}


4. Through CSS change the "Air Date" label to "Premiered" (or you can call it "Season" or however you like):
.list-table .list-table-header .header-title.started .link.sort {font-size: 0;}
.list-table .list-table-header .header-title.started .link.sort:before {content: "Premiered"; font-size: 11px;}


5. Last touch up is to remove the redundant separator on the right end and to set your desired width:
.list-table .list-table-header .header-title.started:nth-child(8) {width: 120px; background-image: none;}



– Since both Premiered and Air Date use the same class you have to use :nth-child(N) for picking the exact element. You can find the child numbers through Inspector in your Browser, in Firefox it is accessed from clicking right mouse button on the html tag > Copy > CSS Selector.


xleDec 13, 2020 12:21 AM
Dec 11, 2020 5:39 PM

Offline
Jun 2012
21
Shishio-kun said:

If you mean to sort by starting premiere year, this is possible:


sort premiere by starting date (sort of)

[url=https://myanimelist.net/animelist/xnl?status=1&order=-14]sort premiere by starting date (sort of)[/url]


You can use that on your About Me and then go straight to the page you want with premiere sorting.

Also, it is possible with CSS to add a menu to each category on your list that opens up and would have two links to sort the list according to premiere dates. But this might take a long time to code with a lot of back and forth, and I have to ask for help with it since I don't know a particular CSS code on the modern list, and also the menu would be tied to a specific anime on each category and won't work anymore when you move it off the category. So I don't recommend it, and you have to be sure you will use it because it could be really time-consuming for volunteers


Hey, thank you for your reply! I was in the process of writing my workaround and didn't see your post. Refer to my previous reply, it is quite an easy "hack" to do the sorting by season via altering the "Premiere" header to "Air Date". Check my animelist page to see it working, if you are interested.
Dec 11, 2020 6:01 PM

Offline
Feb 2010
12642
xnl said:
Shishio-kun said:

If you mean to sort by starting premiere year, this is possible:


sort premiere by starting date (sort of)

[url=https://myanimelist.net/animelist/xnl?status=1&order=-14]sort premiere by starting date (sort of)[/url]


You can use that on your About Me and then go straight to the page you want with premiere sorting.

Also, it is possible with CSS to add a menu to each category on your list that opens up and would have two links to sort the list according to premiere dates. But this might take a long time to code with a lot of back and forth, and I have to ask for help with it since I don't know a particular CSS code on the modern list, and also the menu would be tied to a specific anime on each category and won't work anymore when you move it off the category. So I don't recommend it, and you have to be sure you will use it because it could be really time-consuming for volunteers


Hey, thank you for your reply! I was in the process of writing my workaround and didn't see your post. Refer to my previous reply, it is quite an easy "hack" to do the sorting by season via altering the "Premiere" header to "Air Date". Check my animelist page to see it working, if you are interested.


Very nice! I was thinking of a way to customize the list by choosing between two links to sort by earliest or latest premiere dates without sacrificing columns, but this is way more convenient and clean since you can just click on Season! You don't really need the air dates when you have the seasons, anyways. It looks way better this way! Good job :D
Dec 13, 2020 6:22 AM

Offline
Dec 2012
255
I also have a q.qs bout my list:

- how to remove the background wallpaper ONLY from manga list
- how to edit manga list if it is visible in changing the style but NOT visible in edit your style...it is called "keroroslayers style"

THANKS
keroroslayerDec 13, 2020 6:27 AM
Dec 13, 2020 3:37 PM

Offline
Feb 2010
12642
keroroslayer said:
I also have a q.qs bout my list:

- how to remove the background wallpaper ONLY from manga list
- how to edit manga list if it is visible in changing the style but NOT visible in edit your style...it is called "keroroslayers style"

THANKS


It's hard to tell someone else how to fix a classic layout like this because there's so many possibilities and I don't have enough info, but there's some things to try

First go here and make sure the manga list is saved to keroroslayers style (click Submit button)
https://myanimelist.net/editprofile.php?go=stylepref&do=changestyle

If it's your style you should be able to change it here for now
https://myanimelist.net/editprofile.php?go=stylepref&do=edit

To change the wallpaper, go here and see if this is where your wallpaper is set. You could set it to show no wallpaper on this page.
https://myanimelist.net/editprofile.php?go=stylepref&do=wallpaper

If the wallpaper is still showing up, change the manga list to another theme on this page like black and red and see if one of those settings accepts the no wallpaper change.
https://myanimelist.net/editprofile.php?go=stylepref&do=changestyle




That should be all you need, but if you want to customize further than the basics you could also change the manga list style to a style ID like I have here



You can use the same style ID as your anime list and this would make them both the same, or you can set your manga list to another style ID and edit it on this page (it can be a different one from the anime list style ID if you want to edit them differently).

https://myanimelist.net/editprofile.php?go=stylepref&do=cssadv
Go here to edit the style ID (this will change the list style and we can give you codes for it) or make a new one if you only have one style ID available. Your anime list is probably using the first style. The style ID lets you use custom CSS and classic layouts but its more complicated.



If none of this is working tell me exactly what you have under here for now
https://myanimelist.net/editprofile.php?go=stylepref&do=changestyle

(this is a screenshot from mine)



Or you might want to switch to modern
Shishio-kunDec 13, 2020 3:52 PM
Dec 15, 2020 12:26 AM

Offline
Jun 2019
10
The text on my manga list for each series that shows my progress seems to overlap and looks bunched up, but the same text format on my anime list is totally fine?
"𝙶𝚘𝚝𝚝𝚊 𝚔𝚎𝚎𝚙 𝚖𝚘𝚟𝚒𝚗𝚐 𝚏𝚘𝚛𝚠𝚊𝚛𝚍, 𝚏𝚊𝚛 𝚋𝚎𝚢𝚘𝚗𝚍 𝚝𝚑𝚎 𝚑𝚘𝚛𝚒𝚣𝚘𝚗." - 𝚁𝚒𝚗 𝙼𝚊𝚝𝚜𝚞𝚘𝚔𝚊

Dec 15, 2020 12:41 AM
Offline
Jan 2020
2
Me and my friends followed your layout videos and first I just wanted to say thanks for making a really good and comprehensive guide to making the custom layout. However, all of my friends and I have this issue where the custom cursor didn't load and there is a constant loading icon next to the default windows cursor. I tried removing the custom cursor to see if that was the issue, but it wasn't. I'm not sure if you have a solution to fix this or not, but if you do me and my friends would appreciate it a lot! Thank you!

Edit: Fixed
MeltyForkDec 15, 2020 1:22 AM
Dec 15, 2020 1:16 AM

Offline
Feb 2010
12642
MeltyFork said:
Me and my friends followed your layout videos and first I just wanted to say thanks for making a really good and comprehensive guide to making the custom layout. However, all of my friends and I have this issue where the custom cursor didn't load and there is a constant loading icon next to the default windows cursor. I tried removing the custom cursor to see if that was the issue, but it wasn't. I'm not sure if you have a solution to fix this or not, but if you do me and my friends would appreciate it a lot! Thank you!



The "loading cursor" shows up if you remove the custom cursor, or if the custom cursor is down, or maybe if your layout can't connect to the custom cursor URL for some reason. It won't show up in Edge either so the layouts have to updated sometime. You can add this to the bottom and that might fix it.

* {
cursor: url(http://cur.cursors-4u.net/cursors/cur-11/cur1054.cur), auto !important;
}
Reply Disabled for Non-Club Members
Pages (159) « First ... « 129 130 [131] 132 133 » ... 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 »»
Yesterday, 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