Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 149 150 [151] 152 153 » ... Last »
May 23, 2022 6:01 PM

Offline
Sep 2019
133
Leospars said:


So we'll go to ShaggyZE's manga code cuz he has this already

https://dl.dropboxusercontent.com/s/j3dbcw5j7itrl8b/special_tags.css

He has the genre codes customized and it looks like genre 1 (action) has this selector so you can customize it with red.

a[href$="&genre=1"]{
color: red !important;}

When you point to the genre on your list it shows the number of the genre at the bottom of your page, 1 is action, 4 is comedy, 10 is fantasy etc



Great thanks 👍


Jun 2, 2022 11:21 PM

Offline
Mar 2020
76
Hello, I rececntly noticed that there was a text limit for tags. That begs the question, is there any way to replace tags to comments? I've done my fair share of research to no avail. There are a few themes that are able to show comments but I'm no expert in CSS and I'd like my current list to stay the way it is. Thanks in advance :D
Jun 3, 2022 1:11 AM
平沢唯

Offline
Dec 2016
2206
xMdb said:
Hello, I rececntly noticed that there was a text limit for tags. That begs the question, is there any way to replace tags to comments? I've done my fair share of research to no avail. There are a few themes that are able to show comments but I'm no expert in CSS and I'd like my current list to stay the way it is. Thanks in advance :D

I don't know of a way to do this currently. It would have to be done with a userscript that caches your list and then updates the HTML (for you) or the CSS (for both you and other people), and I don't think that has been made yet. Most if not all comments you see on lists are added manually through custom CSS, which would mean rewriting what is in the comments into a CSS format compatible with your list design. I think a preset for this has already been created but I can't find it right now. Either way, we could help there if you wanted to do that.

If anyone *has* heard of a script to display comments, I'd love to be corrected.
Jun 3, 2022 6:02 AM

Offline
May 2010
1239
@xMdb your just looking for a way to display longer reviews right? you can look at my anime/manga list for how I do it, it doesn't necessarily need to be the comments section does it? like V.L said I don't know of a way to only move the comments so not sure what theme you think you saw that on, but I have a few tools that can take your current tags and put them into CSS and another tool that can clear your tags and populate with genres/studio/rounded score or whatever you want.

https://myanimelist.net/forum/?topicid=1938559#msg66190979
Example:
@\import "https://shaggyze.github.io/Themes/Mod%20-%20Mini-Review.css";
@\import "https://dl.dropboxusercontent.com/s/v5rdjztzsohjvvv/Mini-Review%20xMdb.css";
Jun 3, 2022 11:31 AM

Offline
Feb 2010
12660
Valerio_Lyndon said:

If anyone *has* heard of a script to display comments, I'd love to be corrected.


Not atm, ppl been trying to do this for like ten years, all the smart old school guys couldn't do it either even tho they did other crazy things with many code types (including cover generators).

Based on the list features added recently, and what staff has said publicly, it seems we will get a "comments" list column in addition to the tags/genre/demo row. So I wonder if they will move the current "more comments" to that row. And current tags would be manually exported to that row most likely.

The thing is comments have BBcode, and there's already too many rows so, I think they might make the list table wider like taking up 100% of the page. Therefore it's only smushed on 1024px screens. BBcode on a list page is wild too, it's crazier than CSS on profile pages

Should probably post in suggestions to let staff know about more's comments, I think its possible they'd forget it

Jun 7, 2022 3:16 AM

Offline
May 2010
1239
Shishio-kun said:
Does anyone know how to use attribute selector with the width of section? We used to be able to use codes like this on classic

.td1[width="125"], .td2[width="125"] {
background: none repeat scroll 0 0 transparent;
left: 4px;
position: absolute;
top: 192px;
width: 225px;
}

but what I think would be the same doesn't work on modern

.data[width="84"] {
background-color: red !important;
}




This selector doesn't color this part, not sure if its possible or wrong


What I'm trying to do is target spaces for the movies type on this layout, which end up all having specific widths (I want to target only movie cells with a moving code).

I know this is an old post, so not sure if you're still working on it or found a solution but recently I removed some ads on MAL so I found this which should work
div[style="padding: 20px 0 20px 40px; float: left; position: relative; z-index: 1;"]
not sure if style= can pick and choose only width, it might need to be the complete/actual style from inspect element for all I know.
ShaggyZEJun 7, 2022 3:20 AM
Jun 7, 2022 10:03 AM

Offline
Feb 2010
12660
ShaggyZE said:
Shishio-kun said:
Does anyone know how to use attribute selector with the width of section? We used to be able to use codes like this on classic

.td1[width="125"], .td2[width="125"] {
background: none repeat scroll 0 0 transparent;
left: 4px;
position: absolute;
top: 192px;
width: 225px;
}

but what I think would be the same doesn't work on modern

.data[width="84"] {
background-color: red !important;
}




This selector doesn't color this part, not sure if its possible or wrong


What I'm trying to do is target spaces for the movies type on this layout, which end up all having specific widths (I want to target only movie cells with a moving code).

I know this is an old post, so not sure if you're still working on it or found a solution but recently I removed some ads on MAL so I found this which should work
div[style="padding: 20px 0 20px 40px; float: left; position: relative; z-index: 1;"]
not sure if style= can pick and choose only width, it might need to be the complete/actual style from inspect element for all I know.


OK is that selector for the data started box? I'll test it out later


div[style="padding: 20px 0 20px 40px; float: left; position: relative; z-index: 1;"]{
background: red !important;
}

tried this with all columns on modern, didn't see any change
Shishio-kunJun 7, 2022 12:36 PM
Jun 7, 2022 5:22 PM

Offline
May 2010
1239
@Shishio-kun no that was for an AD, ie is just an example you might need to try something like td.data.started[style="width: 84px; height:79px;"] or .data[style="width: 84px;"] whatever you're trying to select
Jun 7, 2022 6:35 PM

Offline
Feb 2010
12660
@ShaggyZE ah ok, thanks!
Jun 14, 2022 12:59 PM

Offline
Feb 2010
12660
@solojoker your layout works for me, still broken? I would try to install the originals and see if they work to narrow down the problem.
Jun 14, 2022 11:30 PM
平沢唯

Offline
Dec 2016
2206
solojoker said:
why suddenly my list appear like that and i didnt change anything in my custom css

Also appears correctly for me, for some reason. Either way, try removing the code on lines 1-9. It isn't valid CSS and uncommented code before @import lines break code, so this is most likely the issue.
Jun 15, 2022 12:59 PM

Offline
Feb 2010
12660
solojoker said:
@Shishio-kun
I discovered something that all the layouts i try are broken


try adding back your original layout, and screenshot it, so we can see how it looks on your end
Jun 16, 2022 7:44 AM

Offline
Jul 2010
12
solojoker said:
@Shishio-kun
take a look at my anime list and see for yourself
but why it broken like that


this is your list on my screen



How does it look like for you if you open your list in incognito mode? Maybe try clearing your browser cache, that could possibly fix it.
Jun 16, 2022 10:27 AM

Offline
Feb 2010
12660
solojoker said:
@Shishio-kun
take a look at my anime list and see for yourself
but why it broken like that


We told you your list doesn't look broken to us and seems perfectly fine. It is a problem on your end probably, maybe with the device.

"Broken" can mean many different things. So we need to see what you're seeing first, to try to get an idea of what the problem is and see how exactly its broken. Take a screenshot of it so we can see exactly what is broken, post it here. You can press the print screen key over your list and then paste it to Imgur and it should upload a screenshot there

Also what browser are you using? Look at the list in different browsers, see if it's broken in any other browsers. If its broken in other browsers then the problem is the device or your area, probably. If its only broken in one browser the problem is in that browser- extensions or something blocking the codes maybe

Shishio-kunJun 16, 2022 10:52 AM
Jun 16, 2022 11:57 AM

Offline
Feb 2010
12660


You didn't tell us what browser you are using and if it works in other browsers 😕

Anyways this looks like the imports were blocked in your browser, or device, or the area. So you have to find a way to unblock the imports if that's the case. It might be from an extension. I would reset the browser back to default, clear everything, and remove and reinstall extensions, to see if there's something added that blocks the imports. Save passwords and list extensions on a PC notepad first tho

You can also try to change your code over to this and see if it lets the imports thru this way
https://pastebin.com/raw/6J55gkhW
Jun 16, 2022 3:02 PM

Offline
Feb 2010
12660
solojoker said:
@Shishio-kun
thx bro i use the code you told me to change and it worked how you do it


Good! :D

It removes some text on top that blocked the imports maybe, although it doesn't do that to me, as per Valerio's solution, and I also added the backup code to the bottom
Jun 20, 2022 5:15 PM
Offline
Apr 2018
8
Hello, my name is David.
I was customing one of your layouts, the Grid Style 4. I was working on it some months and I had to make a bit for finish it when suddenly I erased the most of the code withouth noticing myself and clicked "Save".
I hadn´t copy the code anywhere and I am desperate. I have only two windows where I can previsualize the codes in the inspect button on the navegator (chrome).
Is there in myanimelist any site where see the previusly code that I had?
I don´t know what to do in this situation and I thought only in see little a little the code with the inspect button and make it from zero but copying and pasting the code from the inspect button.
Is there other easy form to solve it?
And if I even do this, I am not sure that this run well.
Jun 20, 2022 6:53 PM

Offline
Feb 2010
12660
davidvg55 said:
Hello, my name is David.
I was customing one of your layouts, the Grid Style 4. I was working on it some months and I had to make a bit for finish it when suddenly I erased the most of the code withouth noticing myself and clicked "Save".
I hadn´t copy the code anywhere and I am desperate. I have only two windows where I can previsualize the codes in the inspect button on the navegator (chrome).
Is there in myanimelist any site where see the previusly code that I had?
I don´t know what to do in this situation and I thought only in see little a little the code with the inspect button and make it from zero but copying and pasting the code from the inspect button.
Is there other easy form to solve it?
And if I even do this, I am not sure that this run well.


Sorry that happened to you, it's happened a lot of people it really sucks! In the future always save your layout to a notepad or share it and then its preserved in the forum.

Search thru your themes here, maybe the code is there somewhere on another theme
https://myanimelist.net/ownlist/style

It is a long shot and probably won't work, but see if your list design is saved in the wayback machine (post your anime list links there)
https://archive.org/web/

If the layout is on a list somewhere you can link me to, I can probably rip the whole thing from Inspect Element

Other than that, I don't think anything else can be done to restore it so you'd have to make it all over again.

I have had a similar problem, and I asked the site admin if she could restore my list from a backup on the server, she told me this wasn't possible then, and probably isn't now.
Jun 20, 2022 6:58 PM

Offline
Feb 2010
12660
davidvg55 said:
Hello, my name is David.
I was customing one of your layouts, the Grid Style 4. I was working on it some months and I had to make a bit for finish it when suddenly I erased the most of the code withouth noticing myself and clicked "Save".
I hadn´t copy the code anywhere and I am desperate. I have only two windows where I can previsualize the codes in the inspect button on the navegator (chrome).
Is there in myanimelist any site where see the previusly code that I had?
I don´t know what to do in this situation and I thought only in see little a little the code with the inspect button and make it from zero but copying and pasting the code from the inspect button.
Is there other easy form to solve it?
And if I even do this, I am not sure that this run well.


Also using your manga list as an example, if you are to somehow inspect the original layout on a Chrome window like you said, in Inspect you can find the code here. You can also right click and save those pages with the CSS if you can still see them, and then zip the page to an RAR and then link us to the RAR on Dropbox (ask if you need help trying to do that).

Sources
Myanimelist
your name

scroll down to the CSS at this number (or just copy the entire thing paste to notepad and pastebin, let us sort it out later)

https://imgur.com/a/RXjQGpJ
Shishio-kunJun 20, 2022 7:48 PM
Jun 20, 2022 7:54 PM
Offline
Apr 2018
8
Hello again, I finally achieved solve it looking for the code in the inspect zone. Before that this, I tried a lot of things for recovery the bbcode. First of all, I found the code in the first line of html code dropdown, I copy and paste all the code in a text document. Later, I searched for where the code starts as "/*Layout CSS was originally made by Takana no hana, edits by Shishio-kun and Valerio_Lyndon" and end in my particular case as "/* EXTRAS: */
/* List Fonts */
.cover-block::before {
font-family: 'Indie Flower';
}
.list-unit .list-status-title .text {
color: #40E0D0;
}" .
Then I copied all my animelist html code and searched in chrome a html converter to bbcode, converted it and tested it in other Modern List Design different to my custom layout. Surprisingly, it worked well.
Shortly after that, I saw your answer and I did the same, but from the site that you told me. It worked well again and I think that is the same result. Correct me in case I did something wrong.
Sorry for my english and thanks you soo much for helping me and for the fast answer!
Jun 20, 2022 8:17 PM

Offline
Feb 2010
12660
davidvg55 said:
Hello again, I finally achieved solve it looking for the code in the inspect zone. Before that this, I tried a lot of things for recovery the bbcode. First of all, I found the code in the first line of html code dropdown, I copy and paste all the code in a text document. Later, I searched for where the code starts as "/*Layout CSS was originally made by Takana no hana, edits by Shishio-kun and Valerio_Lyndon" and end in my particular case as "/* EXTRAS: */
/* List Fonts */
.cover-block::before {
font-family: 'Indie Flower';
}
.list-unit .list-status-title .text {
color: #40E0D0;
}" .
Then I copied all my animelist html code and searched in chrome a html converter to bbcode, converted it and tested it in other Modern List Design different to my custom layout. Surprisingly, it worked well.
Shortly after that, I saw your answer and I did the same, but from the site that you told me. It worked well again and I think that is the same result. Correct me in case I did something wrong.
Sorry for my english and thanks you soo much for helping me and for the fast answer!


OK good job, sounds like you got it solved. It's not BBcode though, its CSS: CSS is the code on lists generally and BBcode is the special text tags in forum posts and the profile About Me

Jun 24, 2022 4:56 PM
Fantasy lover

Offline
Aug 2017
1298
Hi, I have 2 small problems with my list.

I'm using this style for my anime list but on the filter option both buttons show apply Screen. Is that a mistake with the new sign-up code? I found this image in the code so that probably shouldn't be the problem.

I'm using this style for my manga list but the background of the cast is just black
Screen
I didn't edit this one and just tried copy+paste the code again and it's still there so there probably is an error in the code somewhere?
Jun 25, 2022 2:05 AM
平沢唯

Offline
Dec 2016
2206
ExperienceLD said:
Hi, I have 2 small problems with my list.

I'm using this style for my anime list but on the filter option both buttons show apply Screen. Is that a mistake with the new sign-up code? I found this image in the code so that probably shouldn't be the problem.

I'm using this style for my manga list but the background of the cast is just black
Screen
I didn't edit this one and just tried copy+paste the code again and it's still there so there probably is an error in the code somewhere?

Both are pretty simple fixes related to the background of the elements.

For #1, the element just seems to be missing the background position to position the button image correctly. Seems to be a bug with the theme. Use this code:
/* Fix filter button label */
#advanced-options .btn-clear::before {
	background-position-x: -151px;
}



As for #2 I believe it's caused by your use of a non-default style. You're using style #7 while this design was most likely coded on #1. The extra styles, especially the dark ones, have some extra CSS that can make things look weird when list designers don't account for it.

The background you can fix with this code but I haven't checked to see if there are any other issue with using style #7.
/* Fix issues with non-default style */
.list-container {
	background: none !important;
}



Add all new code to the bottom of your CSS.
Jun 25, 2022 2:32 AM

Offline
Feb 2010
12660
@Valerio_Lyndon ty for helping them!!! :D

Jun 25, 2022 3:05 AM

Offline
May 2010
1239
@Valerio_Lyndon
@ExperienceLD

my re:zero theme has that positioning, it's possible with the most recent repair either I or they didn't put the image in the correct selector or some typo ( I thought they use to highlight on mouse over too, but could be wrong).
#advanced-options .btn-apply:before,
#advanced-options .btn-clear:before {
  position: absolute;
  display: block;
  content: '';
  top: 8px;
  width: 151px;
  height: 44px;
  background: url(https://dl.dropboxusercontent.com/s/9hokm406hbu1l4y/LTZWbXc.png) no-repeat;
  z-index: -1;
}

#advanced-options .btn-apply,
#advanced-options .btn-clear {
  position: relative;
  display: inline-block;
  top: -7px;
  margin: 0 4px;
  width: 151px;
  height: 44px;
  padding: 0;
  font-size: 0;
  color: 0;
  background-color: transparent;
  background-image: url(https://dl.dropboxusercontent.com/s/ddg1fwcwex1990n/yCHrxjyj0lwjmGEXjAnOyBX1VmTjvLDrAiuxXzA-UVI.png);
  background-repeat: no-repeat;
  border-radius: 0;
}

#advanced-options .btn-apply {
  background-position: 0 0;
}

#advanced-options .btn-clear::before {
	background-position-x: -151px;
}

though I have an unrelated issue where it takes like a minute for my filters to show up (which I've had before) that I need to figure out what is causing it again.
ShaggyZEJun 25, 2022 4:22 AM
Jun 25, 2022 8:49 AM
Fantasy lover

Offline
Aug 2017
1298
Valerio_Lyndon said:

Both are pretty simple fixes related to the background of the elements.

For #1, the element just seems to be missing the background position to position the button image correctly. Seems to be a bug with the theme. Use this code:
/* Fix filter button label */
#advanced-options .btn-clear::before {
	background-position-x: -151px;
}



As for #2 I believe it's caused by your use of a non-default style. You're using style #7 while this design was most likely coded on #1. The extra styles, especially the dark ones, have some extra CSS that can make things look weird when list designers don't account for it.

The background you can fix with this code but I haven't checked to see if there are any other issue with using style #7.
/* Fix issues with non-default style */
.list-container {
	background: none !important;
}



Add all new code to the bottom of your CSS.



Both work now. Thanks a lot!
Jun 25, 2022 4:42 PM
Trickster

Offline
Jun 2011
2252
SOLVED

Needing help to find the place where I can edit the size and color of the anime title for each anime entry on my list. I want to experiment to see what sizes and colors look best, but I'm having a hard time finding where that is in my code.

List link: https://myanimelist.net/animelist/takkun_

My List Code:


Any help would be appreciated!
takkun_Jun 25, 2022 5:04 PM
Jun 25, 2022 4:49 PM

Offline
May 2010
1239
takkun_ said:
Needing help to find the place where I can edit the size and color of the anime title for each anime entry on my list. I want to experiment to see what sizes and colors look best, but I'm having a hard time finding where that is in my code.

List link: https://myanimelist.net/animelist/takkun_

Any help would be appreciated!

.list-table .list-table-data .data.title .link {
position: absolute; left: 20px; bottom: 45px; width: 160px; z-index: 2; opacity: 0;
font-size: 20px; color: #FF0000 !important; line-height: 22px; text-transform: uppercase;}

.list-table .list-table-data .data.title .link:hover {
color: #FFFFFF !important;}
ShaggyZEJun 25, 2022 4:59 PM
Jun 25, 2022 5:04 PM
Trickster

Offline
Jun 2011
2252
ShaggyZE said:
takkun_ said:
Needing help to find the place where I can edit the size and color of the anime title for each anime entry on my list. I want to experiment to see what sizes and colors look best, but I'm having a hard time finding where that is in my code.

List link: https://myanimelist.net/animelist/takkun_

Any help would be appreciated!

.list-table .list-table-data .data.title .link {
position: absolute; left: 20px; bottom: 45px; width: 160px; z-index: 2; opacity: 0;
font-size: 20px; color: #FF0000 !important; line-height: 22px; text-transform: uppercase;}

.list-table .list-table-data .data.title .link:hover {
color: #FFFFFF !important;}


Thank you! I appreciate your help!
Jun 26, 2022 4:03 AM

Offline
Feb 2010
12660

@ShaggyZE thanks for helping!! :D
Jun 28, 2022 12:29 AM

Online
Feb 2019
11581
Alright, apologies if it's a dumb question, but I just wanna set up my profile like this dude: https://myanimelist.net/profile/RebelPanda

Like I want to be able to link to my latest reviews and attach photos to them. What would the bbc code for that be?
Jun 28, 2022 7:53 PM

Offline
May 2010
1239
Marinate1016 said:
Alright, apologies if it's a dumb question, but I just wanna set up my profile like this dude: https://myanimelist.net/profile/RebelPanda

Like I want to be able to link to my latest reviews and attach photos to them. What would the bbc code for that be?

https://myanimelist.net/forum/?topicid=399507
Jun 28, 2022 7:54 PM

Online
Feb 2019
11581
ShaggyZE said:
Marinate1016 said:
Alright, apologies if it's a dumb question, but I just wanna set up my profile like this dude: https://myanimelist.net/profile/RebelPanda

Like I want to be able to link to my latest reviews and attach photos to them. What would the bbc code for that be?
[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKKslXmqEteMTrdzn0yJ7sw[/img][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKKslXmqEteMTrdzn0yJ7sw[/img][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGGD3cOBLJ3vr1yAKML3ZCM[/img]Welcome to my profile!

Friend Requests: All are accepted.



[url=https://myanimelist.net/reviews.php?id=449960]

Birdie Wing: Golf Girls' Story Review!

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNAMep8JPXp4-1WX8OnJ6sE[/img][/url]



[url=https://myanimelist.net/reviews.php?id=449392]

Spy x Family Review

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwF0GG1pOz9zSfzmiIMJhL3Q[/img][/url]






[url=https://myanimelist.net/reviews.php?id=449208]

Kaguya-sama Love is War Season 3 Review!

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPE71qVebF119E-n93Q6eJU[/img][/url]

[url=https://myanimelist.net/reviews.php?id=448878]

Komi-san Season 2 Review

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwO9J2pbeVtcTo7xeu6N4pTo[/img][/url]

[url=https://myanimelist.net/reviews.php?id=448684]

Tomodachi Game Review!

[img]https://image.myanimelist.net/ui/5yNwZAV6aLvBzFX3viL9ixVdv6LJ39EulGKoS_qElE7OmYlkTbc754IHv-QDE88KF-yP0wNcRYAilHgJc_pwX72aJ7nCVGUm0HwKVTRB9NfBW5HA1fNWvz9YsO3c804b[/img][/url][url=https://myanimelist.net/reviews.php?id=448122]

The Executioner and Her Way of Life Review!

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwANOwE_noDYEwmgWgcVy6vE[/img][/url]

[url=https://myanimelist.net/reviews.php?id=447982]

Ya Boy, Kongming Review!

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwEdjdF-34JoGAaa1IbwS9xM[/img][/url]



[url=https://myanimelist.net/reviews.php?id=449019]

Skeleton Knight in Another World Review (CW Sexual assault)

[img]https://image.myanimelist.net/ui/N0Kp8l5RDVrbyZ06gpWp4uXyjMorrFVw5oXYDVynuWwfX4QUk5xyl2HzCyCTtknZtrgt7edY3qA5TzjvEri51jRcobAx5A-YOyZEfDd_AasdAVfwuxJTk-ZhjAqJzddKLydgOD4bR6WrAjrxsoPBGQ[/img][/url]





If you are seething with anger because you disagree with one or more of my reviews, please watch this before commenting.







If you would like to have an amicable discussion you can reach me on Discord.

disclaimer: this is not an excuse to spam me.









[url=https://www.youtube.com/playlist?list=PLkHEPFdxVqhlWxGWqU0zAYUW6Uo9gjFNt][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJs4Cix8tm6jqHyOzQdyYjo[/img][/url]







[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwOUeriAyp6D7EsXtwfrSN2w[/img]


Scores generated based on technical judgment first, primarily directing, narrative functionality, character development, tonal consistency, visuals, and sound design. Thematic achievement and emotional resonance tend to come second in my reviews if present at all.



[10] Masterwork: Nothing is perfect, but there are some excellently crafted anime that I find personal significance to the point that I would consider them subjectively perfect.


[url=https://myanimelist.net/reviews.php?id=260538][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwBTUG4oNqpaV-vfXFKi4zVY[/img][/url]

[url=https://myanimelist.net/reviews.php?id=266085][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFQLdDXO5PL18H76ZQlO_cI[/img][/url]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGZMkt6G7YbU56ltc989b2g[/img]

[9] Exemplary: These are shows that excel in almost every way. I consider each of these anime one of my favorites—I will rewatch time after time. Although they may have a few issues, any flaws get negated by overall greatness.  


[url=https://myanimelist.net/reviews.php?id=297170][img]https://image.myanimelist.net/ui/LCoE2mHw8BXboUc3lY4KDicIxRe45nxoZAflr4dWMwaPZkDJi47Du97myLC1GGZyLnXsJ8ntX8sZbQad3j4ReaMzoqfWHLnruQ9wHbnC5ig[/img][/url]

[url=https://myanimelist.net/reviews.php?id=259133][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwI6TPkI3dL72e-gQvUJo6NY[/img][/url]

[url=https://myanimelist.net/reviews.php?id=345929][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGVo15dbWsBti1hHlgnELNk[/img][/url]

[8] Great: A well-rounded and strong experience. These shows may have a few minor stumbles along the way, but the positives compensate for many flaws. I recommend them to everyone.


[url=https://myanimelist.net/reviews.php?id=296506][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGho-gtmzw5Q5QqQS-1gmbk[/img][/url][url=https://myanimelist.net/reviews.php?id=369611][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwICncQRpbfnZOMPqsefEGbA[/img][/url]

[url=https://myanimelist.net/reviews.php?id=325266][img]https://image.myanimelist.net/ui/zjX1Y8Ab31fjDvbeoVxRwhf_F7vtWiuugMbe0CTHSD4X2GnGE60DpTwUfv6SkvYBrEormnFdceajBzX9ST4yDwBycMMFJUo0lbEsqXKeYv4[/img][/url]



[7] Good:Overall a very positive experience worth watching despite a few noticeable flaws. It may have apparent issues, but they are less distracting thanks to highpoints. I recommended these anime to most people.


[url=https://myanimelist.net/reviews.php?id=406360][img]https://image.myanimelist.net/ui/4xANNJZlKL2mFaM3ceJGQ_HWnnc3wYxuh8hjuoM1nbjR9aM6L-UiXJ6Nxro9kbVc[/img][/url][url=https://myanimelist.net/reviews.php?id=426746][img]https://image.myanimelist.net/ui/QiXrLN81qkWKbD4GYHPvBJfXQxihuOtI9LrAYsdPEzE_DyKcQA6kV4pYCLwxF1D2nIVBWseg51aWo43xO621TP391zgJyBR0DLS7ajZRpk_ELI1DDtqTRc3x4SpfJZ-J[/img][/url]

[url=https://myanimelist.net/reviews.php?id=439253][img]https://image.myanimelist.net/ui/f3mD_IAdWzXgf72SPm_gQTgQ9OxttsvHO-wYWHzjf7L7mGIl0GcPzt0fbTETaa2dEicUIOMrmDI1T4wIaOqN7oOqoLiHwK2EPpLvMgUxwiyGUrCXS1U8RKSO5NlfjTjL[/img][/url]



[6] Decent: These are above-average shows with good aspects that slightly outweigh the bad. Flawed, but I found it worth watching enough to warrant a tentative recommendation.


[url=https://myanimelist.net/reviews.php?id=304572][img]https://image.myanimelist.net/ui/NMhxKjGdQ21NnPG4rzwnyycy2hhGbmzhAQBhbz9isfx5wdM_o1AddaA9Ga_-vaW_AjLsR62e9tc9ZLkUoHOmNw[/img][/url][url=https://myanimelist.net/reviews.php?id=358650][img]https://image.myanimelist.net/ui/NMhxKjGdQ21NnPG4rzwny-g4HQ5HGrkVjjXsWG6l8klRAfKV1UL-hwbu_O4xEjDd[/img][/url]

[url=https://myanimelist.net/reviews.php?id=417806][img]https://image.myanimelist.net/ui/c_z6RE5NaxdoqI9JOwwoErgLlocgFNX1eMpXUx8ORae-QaTBECChOI-Zl6e1Y4_WAlfve9sIp92PDXzKlYIDoRTr27D7me8cOhk3Ucz6uk8vCxNbRKTEMuU3bW601t6ZVQWBothJXNXOxphFRwXLKw[/img][/url]



[5] Average: These are middle of the road anime: mediocre—they could have been better with more time, management, talent, or budget. Any potential of these anime got wasted—I would not recommend a five without significant caveats.


[url=https://myanimelist.net/reviews.php?id=318521][img]https://image.myanimelist.net/ui/NMhxKjGdQ21NnPG4rzwnyzfIaKc2q5hCMmVeIIjEcNFdjyUOLmd4HAEBZxhgYPXr4sJGf4y89eGvIy_vNqW1XqaV-Ndf1VBxBUGzd0L1sZ0[/img][/url]

[url=https://myanimelist.net/reviews.php?id=438948][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGSmwiC--UkGUoS8A4KMNLU[/img][/url]

[url=https://myanimelist.net/reviews.php?id=311204][img]https://image.myanimelist.net/ui/NMhxKjGdQ21NnPG4rzwny9smxbR6CH7OYYnkpXCwLh3tj0gMMGKCvtCpg0BXhAJICBY6FF8VS8F5DMGMPZq5ZQ[/img][/url]



[4] Subpar: I do not recommend watching these anime; they are below average, not a wholly awful experience, but far from satisfactory. There may have been good ideas or good production values, but the writing lacked substance and the ideas were poorly executed. 


[url=https://myanimelist.net/reviews.php?id=296933][img]https://image.myanimelist.net/ui/NMhxKjGdQ21NnPG4rzwny7wTa41UmM1CzEcf-aHAkUXjj6CL2d3wP_GbDSVErihG[/img][/url]

[url=https://myanimelist.net/reviews.php?id=389261][img]https://image.myanimelist.net/ui/S8HDChLdxwAzPaZj5pO5QgTHpdF8liKHxQ8bawYyAknQwKAKj6t-5patVs9d1efubxnJRRWURTco21pKTEgWO4PY1src3kszG7TdD6sZ56k[/img][/url]

[url=https://myanimelist.net/reviews.php?id=388278][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwEjYweM69z5NFkXiwxMIa5M[/img][/url]



[3] Bad: If there were any good ideas along the way, the anime did not successfully execute them. Amateur writing, terrible visuals, or shallow character writing earned this score. There may have been a few worthwhile moments, but serious issues overshadowed them.


[url=https://myanimelist.net/reviews.php?id=311380][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGaUGbmuv_Mr1H6Kzp-pxUA[/img][/url]

[url=https://myanimelist.net/reviews.php?id=345422][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPG4aRAJtq2v0VAnk5uTB9k[/img][/url]

[url=https://myanimelist.net/reviews.php?id=405135][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKiJmd97KSsj-TaRPaBviCs[/img][/url]



[2] Abysmal: Watching these anime was a harrowing experience. However, it may not have been insulting. Maybe braver people could find an average show in it, but I found nothing—no redeeming qualities except for ironic entertainment. 


[url=https://myanimelist.net/reviews.php?id=386639][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwMgMXaMPghpXkSImdtWYh2w[/img][/url]

[url=https://myanimelist.net/reviews.php?id=324709][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwA2_sQiSBPSIc8ROK2f_FSo[/img][/url]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIJ65CMM4bKWHqJ6wpAenHY[/img]



[1] Pathetic: The shows that are so offensively bad—I want nothing more than to unsee them. Unforgettable, but in the worst way you could imagine. Avoid at all costs.


[url=https://myanimelist.net/reviews.php?id=283200][img]https://image.myanimelist.net/ui/6bI7sHXwW7oHurbokafhu69a9gBRPWIvTXImPz3Ky9w3IWfNtK9WHmv4WHkvKZzl[/img][/url]

[url=https://myanimelist.net/reviews.php?id=369990][img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJzCTBZs3GpppS2_G-8sjzU[/img][/url]

[url=https://myanimelist.net/reviews.php?id=327727][img]https://image.myanimelist.net/ui/0Nc_2I2u8co_CHd1ivfdF5pgdOLW_6l0CemnE5-hkgTXqeysU3Ud0Hi9svRZAUj9PX2xrF4V8XL57JtUmY9BXc9WzvyrB8Me8v1WETUZRaQlfnxnnXpPE81THUap8PrJ[/img][/url]











[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwMrjFcK0LVvCakb03aNlyqc[/img]


















[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwNtupSD5LQa1IVKAI8otcJ8[/img]


[url=http://wwf.panda.org/knowledge_hub/endangered_species/giant_panda/panda/why_we_save_the_giant_panda/]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwN7lEvzAI9gGX-e_y1ILrBQ[/img]

[img]https://image.myanimelist.net/ui/ogNrt6xjoxcgp7z0v_1ZixTZql_Elkb9SXpz9qNjRyGSxgThprixZQUSOTkAOZzZWtGGiPjcZRTkQ1evFwhhCJ5cKOGAZI2k5wBQO6t5I2A[/img]

[img]https://image.myanimelist.net/ui/ogNrt6xjoxcgp7z0v_1Zi7R6iciupdWDHdDNzuuERYM4m1LbNFYcmlNCWktXYNp1Bm86CwnaFapz2IbaKEpIbLGtBWCuaNLWNOubB4JCXx8[/img]

[img]https://image.myanimelist.net/ui/ogNrt6xjoxcgp7z0v_1Zi-VlYHHo0M_q6pIcISosyJbcbQae3MqH9bmjBfv8QY1CuKMrVHlJeEReWmLnc4PpDj-oA_kcKNy813qdALsp334[/img]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwB8j7fjphetVmh40Eic-MDA[/img]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFwlpBviWDv1jkHyhpmZ_K8[/img]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwJE0Qc8z80jcLbgbneYuIOQ[/img]

[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwG8HfE-lU87c0_YzZeVaAUM[/img]

[img]https://image.myanimelist.net/ui/ogNrt6xjoxcgp7z0v_1Zi9vj6lg_EOEGUkMDW5bW9Q_LKUWD_qt7qM08SocVopqErzyr0LsUGZqZTFaTatNkBzXoaOXEPQJTx8N9_NvOj5U[/img][/url]

















[img]https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIZGBSVvK_SEacLl70ravJ0[/img]

[url=http://graph.anime.plus/RebelPanda/profile][img]https://image.myanimelist.net/ui/fwieqmQCPiihLxIxQG1htlwLLt6n3rXHTr5uPH2afrYSr1aiPtC3aKztYJz_sVZQd-mtA1YW6bEmMPydx7tNkInIoRAjuz32yFt2o53QJyn1Gq1UbUB-P06S_NcBqIPypgv2OVZRW0W2tDvFCCvHaRJBr2TAUYJSdL3yLB7qXuZ6h7f7bss4mSit6_EhD-Bn_EyaHhMrYpC9Tpp_w_qT_lPokaLEPRMqcYw1L1nskPIEycmYugGNQFgOMDp0LfNQjpC7lxmDgOv8CUdMc_fT7pp8U2nrSuKZGI0mh7bk98o[/img][/url]
                  


Holy shit you’re actually goated for this. I already had the first part set up but thanks for the second half. Curiously, what’s the code for when I wanna create a hyperlink like with “Here’s my podcast:[Link] so that people can just click that text?
Jun 28, 2022 8:42 PM

Online
Feb 2019
11581
ShaggyZE said:
Marinate1016 said:
Alright, apologies if it's a dumb question, but I just wanna set up my profile like this dude: https://myanimelist.net/profile/RebelPanda

Like I want to be able to link to my latest reviews and attach photos to them. What would the bbc code for that be?

Holy shit you’re actually goated for this. I already had the first part set up but thanks for the second half. Curiously, what’s the code for when I wanna create a hyperlink like with “Here’s my podcast:[Link] so that people can just click that text?

https://myanimelist.net/forum/?topicid=496203[/quote]

Welp nvm, spoke to soon I guess. Will wait for deg and courage
Jun 28, 2022 8:43 PM

Offline
May 2010
1239
Marinate1016 said:
ShaggyZE said:

Holy shit you’re actually goated for this. I already had the first part set up but thanks for the second half. Curiously, what’s the code for when I wanna create a hyperlink like with “Here’s my podcast:[Link] so that people can just click that text?

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

Welp nvm, spoke to soon I guess. Will wait for deg and courage

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

who is deg and courage..
ShaggyZEJun 28, 2022 9:05 PM
Jun 28, 2022 8:44 PM

Online
Feb 2019
11581
ShaggyZE said:
Marinate1016 said:


Holy shit you’re actually goated for this. I already had the first part set up but thanks for the second half. Curiously, what’s the code for when I wanna create a hyperlink like with “Here’s my podcast:[Link] so that people can just click that text?

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


Anyway, if anyone can help. I do still need help
Jun 28, 2022 8:48 PM

Offline
May 2010
1239
Marinate1016 said:
ShaggyZE said:

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


Anyway, if anyone can help. I do still need help

help with what? the link I posted shows how to do
[url=myanimelist.net]Link[/url]
ShaggyZEJun 28, 2022 8:51 PM
Jun 28, 2022 9:43 PM

Offline
Feb 2010
12660
@Marinate1016

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

On that page go to
Adding Links to Text
for the example and way to add links to text



more examples

See my podcast here: podcast link

Big Red Text


codes for this:
See my podcast here: [url=https://www.youtube.com/]podcast link[/url]

[size=200][b][color]Big Red Text[/color][/b][/size]
Shishio-kunJun 28, 2022 10:00 PM
Jun 29, 2022 5:08 AM

Offline
Aug 2012
87
Hey, does anyone know if it would be possible to have Tags only show for Plan to Watch in a classic list? Ie. have the tags column visible in Plan to watch, but hidden in Completed, On-Hold, etc. Similar to how "Priority" is only visible in PTW

ワンダーランズ×ショウタイム
Jun 29, 2022 9:23 AM

Offline
Feb 2010
12660
wkteo said:
Hey, does anyone know if it would be possible to have Tags only show for Plan to Watch in a classic list? Ie. have the tags column visible in Plan to watch, but hidden in Completed, On-Hold, etc. Similar to how "Priority" is only visible in PTW



Yeah I'm pretty sure that can be done with the ~ in selectors. Same concept as here:
https://myanimelist.net/forum/?topicid=1911634


I need the classic tag selector code tho. Do you have the selector code for tags you want to use already (please paste it if you do). Otherwise I can go look it up later
Jun 29, 2022 9:42 AM

Offline
Aug 2012
87
Shishio-kun said:
wkteo said:
Hey, does anyone know if it would be possible to have Tags only show for Plan to Watch in a classic list? Ie. have the tags column visible in Plan to watch, but hidden in Completed, On-Hold, etc. Similar to how "Priority" is only visible in PTW



Yeah I'm pretty sure that can be done with the ~ in selectors. Same concept as here:
https://myanimelist.net/forum/?topicid=1911634


I need the classic tag selector code tho. Do you have the selector code for tags you want to use already (please paste it if you do). Otherwise I can go look it up later


Sorry, my CSS knowledge is pretty basic so I'd rather let you look it up, just so I don't paste the wrong thing by accident ^^''
Thank you a lot for helping!!!

ワンダーランズ×ショウタイム
Jun 30, 2022 12:18 AM

Offline
Feb 2010
12660
wkteo said:
Shishio-kun said:



Yeah I'm pretty sure that can be done with the ~ in selectors. Same concept as here:
https://myanimelist.net/forum/?topicid=1911634


I need the classic tag selector code tho. Do you have the selector code for tags you want to use already (please paste it if you do). Otherwise I can go look it up later


Sorry, my CSS knowledge is pretty basic so I'd rather let you look it up, just so I don't paste the wrong thing by accident ^^''
Thank you a lot for helping!!!



I would think the code would be this, but it doesn't seem these data queries work on classic, or I didn't use them correctly.

So if you switch to modern I can probably find a way to do this. The only other way I know with classic would take too long to set up



/*CURRENTLY WATCHING
To change background images: Delete what's in the parenthesis. Upload the new background to Imgur or a similar site, then copy the direct link (or Original GIF link if it's animated) and paste it into the parenthesis. Save.
*/
/*
Tags Row
*/
[data-query*='"status":1'] .td1:nth-of-type(6),
[data-query*='"status":1'] .td2:nth-of-type(6){
display: none;
}
/*
Tags table Header
*/
[data-query*='"status":1'] .table_header:nth-of-type(6) {
display: none;
}


/*COMPLETED */
/*
Tags Row
*/
[data-query*='"status":2'] .td1:nth-of-type(6),
[data-query*='"status":2'] .td2:nth-of-type(6){
display: none;
}
/*
Tags table Header
*/
[data-query*='"status":2'] .table_header:nth-of-type(6) {
display: none;
}


/*ON HOLD */
/*
Tags Row
*/
[data-query*='"status":3'] .td1:nth-of-type(6),
[data-query*='"status":3'] .td2:nth-of-type(6){
display: none;
}
/*
Tags table Header
*/
[data-query*='"status":3'] .table_header:nth-of-type(6) {
display: none;
}


/*DROPPED*/
/*
Tags Row
*/

[data-query*='"status":4'] .td1:nth-of-type(6),
[data-query*='"status":4'] .td2:nth-of-type(6){
display: none;
}
/*
Tags table Header
*/
[data-query*='"status":4'] .table_header:nth-of-type(6) {
display: none;
}


/*PLANNED */
/*
Tags Row
*/
[data-query*='"status":6'] .td1:nth-of-type(6),
[data-query*='"status":6'] .td2:nth-of-type(6){
display: inherit;
}
/*
Tags table Header
*/
[data-query*='"status":6'] .table_header:nth-of-type(6) {
display: inherit;
}

/*ALL ANIME/MANGA*/
/*
Tags Row
*/
[data-query*='"status":7'] .td1:nth-of-type(6),
[data-query*='"status":7'] .td2:nth-of-type(6){
display: none;
}
/*
Tags table Header
*/
[data-query*='"status":7'] .table_header:nth-of-type(6) {
display: none;
}

Jun 30, 2022 12:59 AM

Offline
May 2010
1239
@Shishio-kun looks like you are using it right, looking at the source of the classic list though, I don't see data-query or data-work so yea doesn't exist/won't work, it does still seem to have data-owner not that it would help in this case, but nice to know.

and I'm no expert so hard to say if it could be done with something like this but probably nowhere close
#status_selected a[href*="status=7"] ~ .td2:nth-of-type(6)

ShaggyZEJun 30, 2022 1:35 AM
Jul 5, 2022 10:09 AM
Offline
Apr 2020
2
Hi, I would like to ask if it's possible to change the background of the edit page to a background image that I prefer.

As you can see in the image provided below, the background is black in colour.


I would like to change the background into this image.


I tried adding some CSS and it worked, but a few months ago the background image turned black.

This is my CSS.


I might have messed up the coding. Please help me find a solution to this problem. Thank you in advance.
Jul 5, 2022 7:28 PM

Offline
May 2010
1239
@L-Astia it looks like you're using the dark mode theme I maintain, I removed ownlist from its url filter so that it would work on edit/add pages like that, you can just try adding !important.
#advanced-options, #fancybox-outer {

box-shadow: 0 0 32px rgba(0,0,0,.75);
background-image: url(https://i.imgur.com/M1LMfqZ.jpg) !important;
background-position:center;
background-size:cover;
color:white;

}

but I will see if I can fix it to get it working on seasonal pages but not lists per say.
if you view your list with another device you can see it's working fine.

ShaggyZEJul 5, 2022 11:41 PM
Jul 5, 2022 11:31 PM
平沢唯

Offline
Dec 2016
2206
@Shishio-kun I forgot to respond to this earlier >_> But colouring items based on their category is possible on classic lists by using the header classes and a "successor" selector. Here's an example where I change the text colour.
.header_cw ~ table [class^="td"] {
	color: orange;
}

.header_completed ~ table [class^="td"] {
	color: blue;
}

.header_onhold ~ table [class^="td"] {
	color: yellow;
}

.header_dropped ~ table [class^="td"] {
	color: red;
}

.header_ptw ~ table [class^="td"] {
	color: gray;
}


Something to note is you are basically required to specify all the categories. The CSS for each category isn't picky. It applies to everything following the category header, including successive categories. What this means is if, for instance, you left out the code for Completed entries, then they would inherit the colour from the Currently Watching section. But as long as you specify all categories, and in the order they appear on the page, then they will properly overwrite the previous CSS and the problem is solved.
Valerio_LyndonJul 5, 2022 11:43 PM
Jul 5, 2022 11:36 PM
平沢唯

Offline
Dec 2016
2206
wkteo said:
Hey, does anyone know if it would be possible to have Tags only show for Plan to Watch in a classic list? Ie. have the tags column visible in Plan to watch, but hidden in Completed, On-Hold, etc. Similar to how "Priority" is only visible in PTW

Hey there, I'm a bit late on this one as I forgot at the time and then got caught up doing other stuff. >_>

Anyhow, if you add this code to the bottom of your CSS, it will hide the tag column on all entries except Plan to Watch items, as you requested.
/* Hide tags on all entries. Also hides genre column as a byproduct */
[width="125"] {
	display: none;
}

/* Add tags back to planned entries
also adds back the genre column which was affected by the earlier selector */
[width="125"] ~ [width="125"], /*genre header & cells*/
.header_ptw [width="125"], /*tag header*/
.header_ptw ~ table [width="125"] /*tag cells*/
{
	display: table-cell;
}
Jul 5, 2022 11:53 PM

Offline
Aug 2012
87
Valerio_Lyndon said:
wkteo said:
Hey, does anyone know if it would be possible to have Tags only show for Plan to Watch in a classic list? Ie. have the tags column visible in Plan to watch, but hidden in Completed, On-Hold, etc. Similar to how "Priority" is only visible in PTW

Hey there, I'm a bit late on this one as I forgot at the time and then got caught up doing other stuff. >_>

Anyhow, if you add this code to the bottom of your CSS, it will hide the tag column on all entries except Plan to Watch items, as you requested.
/* Hide tags on all entries. Also hides genre column as a byproduct */
[width="125"] {
	display: none;
}

/* Add tags back to planned entries
also adds back the genre column which was affected by the earlier selector */
[width="125"] ~ [width="125"], /*genre header & cells*/
.header_ptw [width="125"], /*tag header*/
.header_ptw ~ table [width="125"] /*tag cells*/
{
	display: table-cell;
}


OMG thank u so much!!! only one quick thing, would you know a way to fix how the hover looks with this too?

ワンダーランズ×ショウタイム
Jul 6, 2022 5:54 AM
Offline
Jul 2018
561874

Help me.ty

@ShaggyZE Thanks
removed-userJul 6, 2022 8:47 AM
Jul 6, 2022 7:13 AM
Offline
Apr 2020
2

ShaggyZE said:
@L-Astia it looks like you're using the dark mode theme I maintain, I removed ownlist from its url filter so that it would work on edit/add pages like that, you can just try adding !important.
#advanced-options, #fancybox-outer {

box-shadow: 0 0 32px rgba(0,0,0,.75);
background-image: url(https://i.imgur.com/M1LMfqZ.jpg) !important;
background-position:center;
background-size:cover;
color:white;

}

but I will see if I can fix it to get it working on seasonal pages but not lists per say.
if you view your list with another device you can see it's working fine.



Thanks, it worked :)
Reply Disabled for Non-Club Members
Pages (159) « First ... « 149 150 [151] 152 153 » ... 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