Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 151 152 [153] 154 155 » ... Last »
Sep 27, 2022 11:57 PM

Offline
Aug 2012
87
Valerio_Lyndon said:
wkteo said:
[classic layout] anyone know what can be done to edit the text from the new "Anime List Notes" update MAL added yesterday? like changing the text size/color only for the notes but nothing else on the list

The notes on the classic list can be styled with the selector [id^="noteLinks"]. The text size, colour, and other properties can be changed as per any other element with regular CSS for instance "color", "font-size", and so-forth. Here's an example with a text colour, font size, a background, and some padding.
[id^="noteLinks"] {
	color: #ccf;
	background: #111;
	padding: 5px;
	font-size: 11px;
}


that's exactly what I needed, thank you so much <3

ワンダーランズ×ショウタイム
Sep 28, 2022 1:07 AM

Offline
Oct 2021
1312
Valerio_Lyndon said:
Badonkers said:
There's a recent update where List Notes are added. I tried enabling the notes but it doesn't show up in the list. Any fix to this?

The column is not supported by default due to some problems implementing it with the default design. To support the notes in their default location, the anime/manga titles and the anime/manga type have to be top-aligned at all times. Here's the code for that, you can add it to the bottom of your CSS to try it out:
/*-S-T-A-R-T--------------------*\
| Notes Column Support R0.0      |
\*------------------------------*/

.notes {
	display: block;
	padding-bottom: 4px;
}

.notes .text {
	opacity: .7;
}

.notes textarea {
	background: var(--btn-bg);
	border: 1px solid var(--bg-dark);
	outline-color: var(--accent);
	color: var(--text);
}

.data.title {
	height: auto;
}

.data.type,
.data.title {
	top: 0;
	align-self: flex-start;
}

/*------------------------E-N-D-*/


There are other ways to implement the Notes that wouldn't cause the top-aligned titles, but so far I can only think of alternatives with other downsides such as a constant, fixed padding to all entries and a forced scroll on the notes Column. Or perhaps it could be implemented on the far right of the list items?.. The point is, if you can think of somewhere else you want the Notes I may be able to help but it's likely to have caveats.

Finally it works! Thanks a bunch.
Oct 4, 2022 10:30 AM
Offline
Mar 2022
1
hey I don't want to be annoying, but I don't even see the standard layout and I can't transfer the code, so I mean I copy the code and press paste and then nothing happens

And then there's the fact that I'm not very good at English, my language is German

Thanks
Oct 5, 2022 9:52 PM
平沢唯

Offline
Dec 2016
2206
Angelstorm said:
hey I don't want to be annoying, but I don't even see the standard layout and I can't transfer the code, so I mean I copy the code and press paste and then nothing happens

And then there's the fact that I'm not very good at English, my language is German

Thanks

I don't quite understand your issue, but I may be able to help if I understand what is going wrong. A screenshot would help quickly show the problem. Whatever the problem is, a good first step to debug is to use a fresh or alternate browser. This eliminates the possibility of browser-specific issues, browser extension issues, and more.

Where are you trying to insert the code? You should be able to paste it into the "Add Custom CSS" text area via keyboard shortcut or mouse context menu. Are your referring to the problem where the CSS input does not display?


If you *can* see that text area, saving the theme should be all that's needed once you've inserted the code. Shishio has video and text guides on installing here which may help if you haven't seen them already: https://myanimelist.net/forum/?topicid=1499058#msg45516528 . If they don't help, at what step is the problem occuring?
Oct 12, 2022 6:34 AM
Offline
Feb 2021
1
Hi there,

I checked over FAQ, etc and don't think I can find what my issue is, if it's already covered I'm really sorry!

Basically, I've been editing the CSS to add my own backgrounds, renders etc and I was able to do it for two categories, on hold and planned but as I went to edit the code and do the same for the other categories nothing will change?

The only thing that changed was the renders, now the wallpaper, banner background and the buttons will not change at all and I'm not sure why or what to do? I've been doing the same thing?

Thank you!
Oct 13, 2022 6:53 AM
バハムート零式

Offline
Jul 2008
733
Hello,

I want to edit my anime list for the first time but I have a problem with the idea I had... I was thinking of putting a different background image depending on whether the series is "TV", "Movie", "OVA", etc, but I can't find how to do that because the different types are not defined with Class or ID in the HTML. If someone knows how to do it, I'd be grateful :)
MALOWEEN 2024

(20/20)
Oct 15, 2022 6:53 AM
Offline
Sep 2020
6
Is there a way to change the text in the filter-buttons? ("All Anime", "Currently Watching", etc)
Oct 17, 2022 9:23 AM

Offline
Dec 2020
1118
Hi! Is there a way to resize images using the "[img]" BBCode?

VIEW IN LIGHT MODE
SUBMITTED MANGA ❤︎ F! ENG CHAPTER TITLES
Oct 17, 2022 9:47 PM
平沢唯

Offline
Dec 2016
2206
Hellreaver said:
Is there a way to change the text in the filter-buttons? ("All Anime", "Currently Watching", etc)

Do you mean the buttons up here?


For that list design, you can achieve it with this code. This has the default values, but you can change it by modifying the text inside quotes. You'll notice there are two texts for each category, one for the animelist and one for the mangalist.


If you also want to change the banner text then you can use this code.

Oct 17, 2022 9:48 PM
平沢唯

Offline
Dec 2016
2206
jaeo_k said:
Hi! Is there a way to resize images using the "[img]" BBCode?
Sadly MyAnimeList doesn't offer this feature. You'll have to use an image resizer such as Ezgif, Photopea, or Photoshop.
Oct 17, 2022 10:04 PM
平沢唯

Offline
Dec 2016
2206
Bahamut_Zero said:
Hello,

I want to edit my anime list for the first time but I have a problem with the idea I had... I was thinking of putting a different background image depending on whether the series is "TV", "Movie", "OVA", etc, but I can't find how to do that because the different types are not defined with Class or ID in the HTML. If someone knows how to do it, I'd be grateful :)

Sadly there's no way to detect text content using CSS. It would have to be an attribute, class, or ID for CSS to be able to target it. The only way would be to write a separate list scraper & generator in a programming language.
Oct 17, 2022 10:59 PM
平沢唯

Offline
Dec 2016
2206
arcaaya said:
Hi there,

I checked over FAQ, etc and don't think I can find what my issue is, if it's already covered I'm really sorry!

Basically, I've been editing the CSS to add my own backgrounds, renders etc and I was able to do it for two categories, on hold and planned but as I went to edit the code and do the same for the other categories nothing will change?

The only thing that changed was the renders, now the wallpaper, banner background and the buttons will not change at all and I'm not sure why or what to do? I've been doing the same thing?

Thank you!

Are you still having this issue? Looking at your CSS, I believe the problem may be due to some duplicated code. Some of the codes appear to have been pasted twice, meaning the lower-down codes are overwriting earlier ones. If you attempt to modify the higher-up codes, nothing will happen. That is my best guess right now, anyway. Try deleting lines 1 through 219. You'll see the code start over around line 221, seen here:


After that, try modifying the code as normal and see how it goes. I can take another look if you're still having issues, although access to your raw CSS would be helpful as MyAnimeList obfuscates some of it when viewing the list as a visitor.
Oct 18, 2022 6:55 AM
バハムート零式

Offline
Jul 2008
733
Valerio_Lyndon said:
Bahamut_Zero said:
Hello,

I want to edit my anime list for the first time but I have a problem with the idea I had... I was thinking of putting a different background image depending on whether the series is "TV", "Movie", "OVA", etc, but I can't find how to do that because the different types are not defined with Class or ID in the HTML. If someone knows how to do it, I'd be grateful :)

Sadly there's no way to detect text content using CSS. It would have to be an attribute, class, or ID for CSS to be able to target it. The only way would be to write a separate list scraper & generator in a programming language.


I see, unfortunately that's what I thought. Thanks anyway for your reply! ^^
MALOWEEN 2024

(20/20)
Oct 20, 2022 1:05 PM

Offline
May 2015
605
Has anyone here made a script that interacts with the "detailed episode history" iframe? I'm trying to get rid of the US date format (since user settings don't apply there) but my code doesn't work for that specific menu and I can't figure out why.
Oct 20, 2022 2:39 PM
平沢唯

Offline
Dec 2016
2206
El-MelloiAnimeListMangaListMessage said:
Has anyone here made a script that interacts with the "detailed episode history" iframe? I'm trying to get rid of the US date format (since user settings don't apply there) but my code doesn't work for that specific menu and I can't figure out why.

Someone may have made on over on greasyfork.org, but you'd have to go searching for it.

I could probably help, but I don't understand your problem yet. Just to confirm, you are referencing this menu:


Next, you say you have code that isn't working, but what is that code and how are you trying to execute it? Are you using a userscript extension such as Tampermonkey? If so, what URL are you trying to @match the script too? If you aren't using the correct URL to target the page within the iframe, it will of course not apply. The iframe URL for the example I showed above is as follows:
https://myanimelist.net/ajaxtb.php?keepThis=true&detailedaid=36904&TB_iframe=true&height=420&width=390

So we would of course need a match rule that will target this URL and not anything else. As far as I know, nothing else is run on the ajaxtb.php page, so we can simply use this @match:
// @match        https://myanimelist.net/ajaxtb.php

That should solve any issues with the code not applying while using a Userscript extension. If you aren't using a userscript manager and are running the code a different way, please explain.

As for the code, I can't debug anything without knowing what you're currently working with. I presume you are simply trying to flip the month and date around?
Oct 21, 2022 12:43 AM

Offline
Jan 2016
78
[quote=Valerio_Lyndon message=67764218]It's working when I view your list.


I get this when I check my list.Dropbox does work but none of the links in the description work.
"https://malscraper.azurewebsites.net/covers/anime/SpaceCowboy/presets/more%22;"
this link also gives the message bad preset.

It always worked fine,but It randomly stopped working.Based on what I see the links are dead.
I made sure to disable any adblock doesn't work.I can access other dropbox files fine.
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines.
Oct 22, 2022 6:18 AM
Oct 25, 2022 9:03 AM

Offline
Jan 2016
78
F
For a reason the old version is now working again. I have no clue what was the problem but I also tested your new version it works but the new anime I added on my list do not have updated layouts.
Thanks again for the assistance! Even If it did manage to fix by itself. Sorry for the inconvenience.
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines.
Oct 25, 2022 11:01 AM

Offline
Jan 2018
33322
may i have the link for latest working stylish black background uodated version? i tried one of the links here and a bit of search on stylus but couldn't find a working black background. what im seeing right now is an eye blinding background for the post made by users
Oct 27, 2022 10:37 PM

Offline
Feb 2010
12651
hazecloud said:
may i have the link for latest working stylish black background uodated version? i tried one of the links here and a bit of search on stylus but couldn't find a working black background. what im seeing right now is an eye blinding background for the post made by users


For now you should use the Dark Reader extension which lags when you open a page but it's working despite MAL changes. I hope we can get out a better dark theme by the end of the year, lots of other stuff pushed it back
Oct 27, 2022 11:29 PM

Offline
Jan 2018
33322
Shishio-kun said:
hazecloud said:
may i have the link for latest working stylish black background uodated version? i tried one of the links here and a bit of search on stylus but couldn't find a working black background. what im seeing right now is an eye blinding background for the post made by users


For now you should use the Dark Reader extension which lags when you open a page but it's working despite MAL changes. I hope we can get out a better dark theme by the end of the year, lots of other stuff pushed it back


ayy man thanks for the help. it works well for me.
Oct 30, 2022 9:37 PM
Offline
Jul 2018
561874
I've been looking for the post that has this, but I can't find it. It's the CSS to make the cover pic hover at the top no matter how far someone scrolls down, sounds simple enough but I can't find the post that has it. I've been looking for a while. Can you help me out?
Oct 31, 2022 6:14 AM

Offline
Oct 2019
9
Hi, I'm having a problem with my list whenever i hover over the plus button it rapidly switches between the anime i am hovering over and the one to the bottom left of it. I've linked a video to better show what i mean: https://youtu.be/3KT21-KUPu0

You can see in the video its pretty inconsistent but the button does still work as long as you get the right angle.

I don't know much about CSS so i don't know what could have caused this and i don't know how to go about even finding the bit of code i would need to edit

Here's the link to my list if that would help: https://myanimelist.net/animelist/ParadoX_Crypt

Thanks
Nov 1, 2022 12:17 AM
平沢唯

Offline
Dec 2016
2206
ParadoX_CryptAnimeListMangaListMessage said:
Hi, I'm having a problem with my list whenever i hover over the plus button it rapidly switches between the anime i am hovering over and the one to the bottom left of it. I've linked a video to better show what i mean: https://youtu.be/3KT21-KUPu0

You can see in the video its pretty inconsistent but the button does still work as long as you get the right angle.

I don't know much about CSS so i don't know what could have caused this and i don't know how to go about even finding the bit of code i would need to edit

Here's the link to my list if that would help: https://myanimelist.net/animelist/ParadoX_Crypt

Thanks

The problem seems to be due to the content status text ("airing", "rewatching", etc) being positioned above each list item when the item is not active. The easiest solution is to simply take it out of the page flow when the list items aren't active. Add this code to the bottom of your CSS:
.list-table .list-table-data .data.title .content-status,
.list-table .list-table-data .data.title .rereading,
.list-table .list-table-data .data.title .rewatching {
	display: none;
}
Nov 1, 2022 12:19 AM
平沢唯

Offline
Dec 2016
2206
Gamer418AnimeListMangaListMessage said:
I've been looking for the post that has this, but I can't find it. It's the CSS to make the cover pic hover at the top no matter how far someone scrolls down, sounds simple enough but I can't find the post that has it. I've been looking for a while. Can you help me out?

I don't remember a thread about images at the top, but there are posts about images on the left. Shishio has one here: https://myanimelist.net/forum/?topicid=1751661

It could be positioned at the top with a few small changes to the "top" or "left" properties within that code.
Nov 1, 2022 9:59 AM

Offline
Oct 2019
9
Valerio_Lyndon said:
ParadoX_CryptAnimeListMangaListMessage said:
Hi, I'm having a problem with my list whenever i hover over the plus button it rapidly switches between the anime i am hovering over and the one to the bottom left of it. I've linked a video to better show what i mean: https://youtu.be/3KT21-KUPu0

You can see in the video its pretty inconsistent but the button does still work as long as you get the right angle.

I don't know much about CSS so i don't know what could have caused this and i don't know how to go about even finding the bit of code i would need to edit

Here's the link to my list if that would help: https://myanimelist.net/animelist/ParadoX_Crypt

Thanks

The problem seems to be due to the content status text ("airing", "rewatching", etc) being positioned above each list item when the item is not active. The easiest solution is to simply take it out of the page flow when the list items aren't active. Add this code to the bottom of your CSS:
.list-table .list-table-data .data.title .content-status,
.list-table .list-table-data .data.title .rereading,
.list-table .list-table-data .data.title .rewatching {
	display: none;
}


Thanks for the help! that worked perfectly
Nov 2, 2022 10:31 AM
Offline
Jul 2018
561874
Valerio_Lyndon said:
Gamer418AnimeListMangaListMessage said:
I've been looking for the post that has this, but I can't find it. It's the CSS to make the cover pic hover at the top no matter how far someone scrolls down, sounds simple enough but I can't find the post that has it. I've been looking for a while. Can you help me out?

I don't remember a thread about images at the top, but there are posts about images on the left. Shishio has one here: https://myanimelist.net/forum/?topicid=1751661

It could be positioned at the top with a few small changes to the "top" or "left" properties within that code.

Thanks for the help, I appreciate it. ^^
Nov 3, 2022 1:47 PM

Offline
Mar 2019
5
Hey everyone, forgive me if I'm doing anything for I am very new to using forums and the like online, let alone MAL haha.

I've been trying to implement Shishio-kun's anime list CSS and I'm running into a few confusing struggles which I couldn't find a solution to on the general FAQ for fixes.

Upon trying to add decimal scores to my list, I was met with this weird condition where random anime titles would get the decimal. The instructional code idicates the following:

Replace the number or ID with the number that appears in the URL for the anime you want to add decimal scores to. For manga, also change anime to manga. Change the decimal amount with the number after content.*/
.data.title a[href^="/anime/ID"] ~ .add-edit-more:before {
	content:".5";
}
.data.title a[href^="/anime/ID"] ~ .add-edit-more:before {
	content:".5";
}
.data.title a[href^="/anime/ID"] ~ .add-edit-more:before {
	content:".5";
}
.data.title a[href^="anime/ID"] ~ .add-edit-more:before {
	content:".5";
}
.data.title a[href^="/anime/ID"] ~ .add-edit-more:before {
	content:".5";
}


And upon replacing some of the IDs as instructed I was met with this:



I found this odd as anime ID 48 corresponds to .hack//Sign. The referral code above this is that of Fire Force, which didn't change its decimal number, and remained at 0. I've tried everything I could on my part (though there wasn't much I could try as I am very inexperienced in CSS), so any and all help is extremely appreciated. Thank you in advance.

PS: In the end I am trying to find a way to change the decimal score based on the name of a tag, so if anyone knows how to do that it'd be greatly appreciated too ^^
Nov 3, 2022 3:54 PM
平沢唯

Offline
Dec 2016
2206
ExP_WatermelonAnimeListMangaListMessage said:
I've been trying to implement Shishio-kun's anime list CSS and I'm running into a few confusing struggles which I couldn't find a solution to on the general FAQ for fixes.

Upon trying to add decimal scores to my list, I was met with this weird condition where random anime titles would get the decimal.

https://image.myanimelist.net/ui/fkHpHKa8ZRvgXF3EvLfxXJwxEUD0Uw9ky_kPrNcD6QTutyJYMi59neIjhq6XQB7l7148bWg9_Av-xuPstXTqlY3iPb_3e1Pd0A6oRVo5Lm1UIMYS8x5oaewnKZEI2Xx7

This is probably caused by the selector being imprecise. The [href^="text"] selector targets any href that starts with that text. This causes problems when you have a short selector such as 48: [href^="/anime/48"]. In this example, it will match 48, but it will also match 481, 48358, and so forth. To fix this, you need to end the text with a "/", which will prevent it from matching any further numbers. This works because the list URLs always end in a name section. For example: https://myanimelist.net/anime/48/hack__Sign

In summary, use selectors like this that end in a slash:
.data.title a[href^="/anime/48/"] ~ .add-edit-more:before {
	content:".5";
}

.data.title a[href^="/anime/ID/"] ~ .add-edit-more:before {
	content:".5";
}


ExP_WatermelonAnimeListMangaListMessage said:
PS: In the end I am trying to find a way to change the decimal score based on the name of a tag, so if anyone knows how to do that it'd be greatly appreciated too ^^

This can be done pretty similarly to the manual CSS method, but targeting tags instead of specific IDs. That said, it did take a lot of extra code to get it all layering correctly and not looking awful, so there is that. Here's some code for it. This code relies on the tags being any of ".0", ".1", … ".5", etcetera and the tag should be placed after all your other tags to make commas display correctly.
/* Hide regular commas to avoid floating commas when using decimal tags */

.tags span {
	font-size: 0;
}

.tags span ~ span a::before {
	content: ", ";
}

/* Decimal Tags */

/* remove comma */
.tags span a:is([href$=".0"],[href$=".1"],[href$=".2"],[href$=".3"],[href$=".4"],[href$=".5"],[href$=".6"],[href$=".7"],[href$=".8"],[href$=".9"])::before {
	content: none;
}

/* set colours based on status */
:is(.watching,.reading) ~ .data {
	--local-category: #cfe88d;
}
.completed ~ .data {
	--local-category: #ffff92;
}
.onhold ~ .data {
	--local-category: #afb8e2;
}
.dropped ~ .data {
	--local-category: #fc7671;
}

/* restyle various parts of the page to make things work better */
.list-table-data {
	position: relative;
}

.list-table .list-table-data .data.tags {
	z-index: 1001; /* layer tags above score */
	top: 50px;
	margin: 0 !important;
}

.data.progress {
	white-space: nowrap; /* fix random bug that occured after layering */
}

/* restyle tag */
/* this selector has to be this detailed because the base theme uses really annoying code */
.list-table .list-table-data .tags span a:is([href$=".0"],[href$=".1"],[href$=".2"],[href$=".3"],[href$=".4"],[href$=".5"],[href$=".6"],[href$=".7"],[href$=".8"],[href$=".9"]) {
	position: absolute !important;
	top: -54px;
	right: 0;
	display: block;
	height: 17px;
	padding: 4px 6px 4px 0;
	background: var(--local-category, none);
	color: black;
	font: bold 12.1px/16.5px "Open Sans" !important;
	pointer-events: none;
	visibility: visible;
}

/* End of decimal tag codes */


There's probably a way to do this targeting other random tags while leaving those tags unaffected too if that's what you meant.
Valerio_LyndonNov 3, 2022 4:01 PM
Nov 4, 2022 9:15 AM

Offline
Mar 2019
5
Just got to fixing stuff around and thank you so much for the help it sounds like you went quite the way just to lend me a hand I really appreciate it :)). Thank you so much!
Nov 22, 2022 3:36 PM
Offline
Jan 2022
13
Hi,
I was toying with the layout, and then it just broke.
The CSS didn't display and I just got the default theme.
But if I go into anonymous or different google account it works?
Need help on how can I fix this.
Cheers!
Nov 28, 2022 12:43 AM
平沢唯

Offline
Dec 2016
2206
barnabasduddaAnimeListMangaListMessage said:
Hi,
I was toying with the layout, and then it just broke.
The CSS didn't display and I just got the default theme.
But if I go into anonymous or different google account it works?
Need help on how can I fix this.
Cheers!

So, your list always looks default, except when you are on a different browser/profile. That is a peculiar bug for sure. Are you still having this issue? If so, what browser is it occuring on and what browser extensions do you have installed?

The fact that it is *entirely* default is quite odd for sure, as I would think at least *some* of that CSS would load. It displays to me when I view it or try it on my own list and I am not seeing anything immediately that would break everything, but I may be able to find something with the extra information.
Nov 28, 2022 5:28 AM

Offline
Apr 2014
4234
Is there any method or code for changing the anime title on the list?
This anime - https://myanimelist.net/anime/50421/Yowai_5000-nen_no_Soushoku_Dragon_Iwarenaki_Jaryuu_Nintei
MAL is using the Chinese title as the main title but I want the Japanese one to appear on my list.
真姫ちゃん! 何が好き? トマト よりも あ・な・た♡
Nov 28, 2022 10:41 AM

Offline
Feb 2010
12651
AkeZZZ said:
Is there any method or code for changing the anime title on the list?
This anime - https://myanimelist.net/anime/50421/Yowai_5000-nen_no_Soushoku_Dragon_Iwarenaki_Jaryuu_Nintei
MAL is using the Chinese title as the main title but I want the Japanese one to appear on my list.


Oh I remember you had that really pretty list :D

Yeah you can change the title for your list only and others will see the change, I have to find the anime title code I think (I wrote no tutorial for this in modern, strangely)

But your list says
A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized
right at the top for me
What's the correct name supposed to be? Also it might be you have different settings
Nov 28, 2022 11:01 AM

Offline
Apr 2014
4234
Shishio-kun said:
AkeZZZ said:
Is there any method or code for changing the anime title on the list?
This anime - https://myanimelist.net/anime/50421/Yowai_5000-nen_no_Soushoku_Dragon_Iwarenaki_Jaryuu_Nintei
MAL is using the Chinese title as the main title but I want the Japanese one to appear on my list.


Oh I remember you had that really pretty list :D

Yeah you can change the title for your list only and others will see the change, I have to find the anime title code I think (I wrote no tutorial for this in modern, strangely)

But your list says
A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized
right at the top for me
What's the correct name supposed to be? Also it might be you have different settings


thanks a lot

Chinese: Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming
Japanese: Yowai 5000-nen no Soushoku Dragon, Iwarenaki Jaryuu Nintei
English: A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized

They had used the Japanese title as the main title before. However, currently, MAL is using the Chinese title as a default name because it was produced by a Chinese company, even though it was adapted from a Japanese light novel.
So, I would like to try to find a way to change its title back to the Japanese one, if it is possible.
真姫ちゃん! 何が好き? トマト よりも あ・な・た♡
Nov 30, 2022 3:08 PM

Offline
Jul 2016
466
i thought yall might enjoy this video



Nov 30, 2022 11:52 PM

Offline
Feb 2010
12651
AkeZZZ said:
Shishio-kun said:


Oh I remember you had that really pretty list :D

Yeah you can change the title for your list only and others will see the change, I have to find the anime title code I think (I wrote no tutorial for this in modern, strangely)

But your list says
A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized
right at the top for me
What's the correct name supposed to be? Also it might be you have different settings


thanks a lot

Chinese: Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming
Japanese: Yowai 5000-nen no Soushoku Dragon, Iwarenaki Jaryuu Nintei
English: A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized

They had used the Japanese title as the main title before. However, currently, MAL is using the Chinese title as a default name because it was produced by a Chinese company, even though it was adapted from a Japanese light novel.
So, I would like to try to find a way to change its title back to the Japanese one, if it is possible.


This is the code that seems to work on that title, you change the "My Title" after content to the title you want

.link[href^="/anime/50421/"] {
font-size: 0 !important;
}

.link[href^="/anime/50421/"]:before {
font-size: 13.2px !important;
content: "My Title";
}
Dec 1, 2022 1:28 AM

Offline
Apr 2014
4234
Shishio-kun said:
AkeZZZ said:


thanks a lot

Chinese: Shi Cao Lao Long Bei Guan Yi E Long Zhi Ming
Japanese: Yowai 5000-nen no Soushoku Dragon, Iwarenaki Jaryuu Nintei
English: A Herbivorous Dragon of 5,000 Years Gets Unfairly Villainized

They had used the Japanese title as the main title before. However, currently, MAL is using the Chinese title as a default name because it was produced by a Chinese company, even though it was adapted from a Japanese light novel.
So, I would like to try to find a way to change its title back to the Japanese one, if it is possible.


This is the code that seems to work on that title, you change the "My Title" after content to the title you want

.link[href^="/anime/50421/"] {
font-size: 0 !important;
}

.link[href^="/anime/50421/"]:before {
font-size: 13.2px !important;
content: "My Title";
}


That's great!!
Thanks a lot.
真姫ちゃん! 何が好き? トマト よりも あ・な・た♡
Dec 3, 2022 10:07 AM

Offline
Apr 2020
231
Hi Shishio and everyone, I'm super confused because I thought I had almost finished editing my manga layout but when launching Firefox to modify CSS (not logged in to MAL), it's completely broken... Why is there such a discrepancy? Because when I'm logged there is no issue...


And I just realized there's a similar (maybe) problem with my anime list. I have a banner image for each category. For the categories: "Currently watching" and "On hold" the images load up correctly even if I'm not logged in, but the images for all the other categories the banners just remain black !

edit: whew new page B)
EstebanODDec 3, 2022 10:16 AM
I don't know how signatures work



Dec 3, 2022 11:11 AM
平沢唯

Offline
Dec 2016
2206
EstebanODAnimeListMangaListMessage said:
Hi Shishio and everyone, I'm super confused because I thought I had almost finished editing my manga layout but when launching Firefox to modify CSS (not logged in to MAL), it's completely broken... Why is there such a discrepancy? Because when I'm logged there is no issue...


And I just realized there's a similar (maybe) problem with my anime list. I have a banner image for each category. For the categories: "Currently watching" and "On hold" the images load up correctly even if I'm not logged in, but the images for all the other categories the banners just remain black !

edit: whew new page B)

Annoyingly enough, every image used on MyAnimeList gets rehosted by MAL themselves. They don't do this on your own list, but they do when someone else views it. I believe this is what is causing the issue. Specifically, I believe that MAL is unable to rehost your provided image URL due to it being a Wikipedia link. I don't know why this behaviour is inconsistent, but I am pretty confident it's causing the problem. MAL does not act the same way as a regular client does and may be getting blocked or rate limited when trying to fetch the image from Wikipedia once it's recognised as a corporation.

Try saving the images to your desktop then hosting the images on a known image host such as PostImages, Imgur, or CatBox if the first two are blocked for your country. Use the new image links and see if it helps. I have a short guide on getting the correct image link from PostImages and Imgur [here] that is also linked in the Theme Customiser on each image input under "Tips & Help".
Dec 21, 2022 5:45 PM

Offline
Dec 2015
2840
Hello.

I need help with this, i can't literally figure out what's wrong.


The relustat is this:


I have tried shorten the link, i have tried to redo it around 5 times now the reslutat is the same all the time.

Dec 22, 2022 3:20 AM

Offline
Feb 2010
12651
Nillwas said:
Hello.

I need help with this, i can't literally figure out what's wrong.


The relustat is this:


I have tried shorten the link, i have tried to redo it around 5 times now the reslutat is the same all the time.


Post the full BBcode you're having a problem with here so we can read it easily and I will take a look at it, no screenshots of it please
Dec 22, 2022 3:54 AM

Offline
Dec 2015
2840
Shishio-kun said:
Nillwas said:
Hello.

I need help with this, i can't literally figure out what's wrong.


The relustat is this:


I have tried shorten the link, i have tried to redo it around 5 times now the reslutat is the same all the time.


Post the full BBcode you're having a problem with here so we can read it easily and I will take a look at it, no screenshots of it please
Sorry, how would i post my code so you can read it ?

Dec 22, 2022 7:06 AM

Offline
Feb 2010
12651
Nillwas said:
Shishio-kun said:


Post the full BBcode you're having a problem with here so we can read it easily and I will take a look at it, no screenshots of it please
Sorry, how would i post my code so you can read it ?


If you post it all here, I can edit your post to read it or I can quote it and read it that way. There are also three tools to read the BBcode from a profile/post- it's why I say in the opening post to post or link faulty BBcodes here. 

So just post the BBcode here as you would put into any profile or blog or w/e, or link me to the page it's broken on (no screenshots please)
Dec 22, 2022 7:23 AM

Offline
Dec 2015
2840
Shishio-kun said:
Nillwas said:
Sorry, how would i post my code so you can read it ?


If you post it all here, I can edit your post to read it or I can quote it and read it that way. There are also three tools to read the BBcode from a profile/post- it's why I say in the opening post to post or link faulty BBcodes here. 

So just post the BBcode here as you would put into any profile or blog or w/e, or link me to the page it's broken on (no screenshots please)







This is super wierd. The code works while i'm writting, this comment.
But when i post the code, the code breaks and  dosen't work. When i have posted my comment back to you, it just breaks and dosen't work.



Wiki:
[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji][/url]
[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji]Click Here:[/url]



[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji][/url]

Dec 22, 2022 8:28 AM

Offline
Feb 2010
12651
@Nillwas

Well they did a BBcode update that is causing lots of problems so that may be related
https://myanimelist.net/forum/?topicid=2065303

So let's just put it together one thing at a time, cuz I see several different things between all the examples and code, making it hard to narrow down what is trying to be done. Like for example I don't see the 

Wiki:



in your original screenshot. 












The first thing is this from your first screenshot, is that what goes at the top? I don't see it anywhere in the code you posted. Can you link me to the GIF on Imgur and we'll start with that getting it centered right and putting it at the top. 

Dec 22, 2022 10:11 AM

Offline
Dec 2015
2840
@ Shishio-kun


I'm sorry i copy the wrong code in the text document, it was rather late. So that's 100% my bad.

Here is the code.
Ibuki Dōjii

Noble Phantasm



Lore:





Wiki:

[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji][/url]
[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji]Click Here:[/url]

[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji]
[/url]I have marked the code with blue that dosen't work:

Dec 22, 2022 10:13 AM

Offline
Dec 2015
2840
@ Shishio-kun you can see here, while i wrote in the comment the code works.
But when i post it, the code breaks.




^ I want it too look like this.
But like i said, if i post the comment, the code breaks and the reslutat becomes this:
[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji][/url]
[url=https://fategrandorder.fandom.com/wiki/Ibuki_Dōji]Click Here:[/url]



Reply Disabled for Non-Club Members
Pages (159) « First ... « 151 152 [153] 154 155 » ... 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