New
Mar 28, 2024 5:42 AM
#351
Reply to claymorwan
Is it normal that the Divided Categories on All Anime does this Instead of seperating them like on the screenshot ? I did added the code and change the "USERNAME" to mine

@claymorwan i believe that requires a script to work. LINK --- also, for the cover imports, change SpaceCowboy and DateYutaka to your username. |
Mar 28, 2024 5:56 AM
#352
Reply to karmashizzle
@claymorwan i believe that requires a script to work. LINK
---
also, for the cover imports, change SpaceCowboy and DateYutaka to your username.
---
also, for the cover imports, change SpaceCowboy and DateYutaka to your username.
@karmashizzle O I didn't know there's a script to install, I don't it's said in the post. But it's working now ty :3 |
May 4, 2024 7:13 PM
#353
Hi, I'm using the "Water and Sun Breathing Layout" (more specifically the default version with a background) and I have some question: Is there any way to remove the decimals? I tried searching through the code, removing the "#Decimal Scores" and "#Decimal Scores Settings" parts, but it didn't work. Also, I couldn't find any part to change the color of the tag with the anime genres and start/finish dates and, for some reason, the tag with the score isn't working properly on animes marked as Plan to Watch. |
May 4, 2024 8:08 PM
#354
Reply to CLModerno
Hi, I'm using the "Water and Sun Breathing Layout" (more specifically the default version with a background) and I have some question: Is there any way to remove the decimals? I tried searching through the code, removing the "#Decimal Scores" and "#Decimal Scores Settings" parts, but it didn't work. Also, I couldn't find any part to change the color of the tag with the anime genres and start/finish dates and, for some reason, the tag with the score isn't working properly on animes marked as Plan to Watch.
@CLModerno /* remove decimal */ .list-table .list-table-data .data.score .link:after { content: ""; } /* reposition score */ .list-table .list-table-data .data.score .link { margin-right: 20px; } .list-table .list-table-data:hover .data.genre, .list-table .list-table-data:hover .data.season, .list-table .list-table-data:hover .data.airing-started, .list-table .list-table-data:hover .data.airing-finished, .list-table .list-table-data:hover .data.started, .list-table .list-table-data:hover .data.finished { background: aqua; } |
karmashizzleMay 4, 2024 10:45 PM
May 4, 2024 9:10 PM
#355
Reply to karmashizzle
@CLModerno
.list-table .list-table-data:hover .data.genre,
.list-table .list-table-data:hover .data.season,
.list-table .list-table-data:hover .data.airing-started,
.list-table .list-table-data:hover .data.airing-finished,
.list-table .list-table-data:hover .data.started,
.list-table .list-table-data:hover .data.finished {
background: aqua;
}
/* remove decimal */ .list-table .list-table-data .data.score .link:after { content: ""; } /* reposition score */ .list-table .list-table-data .data.score .link { margin-right: 20px; }
.list-table .list-table-data:hover .data.genre,
.list-table .list-table-data:hover .data.season,
.list-table .list-table-data:hover .data.airing-started,
.list-table .list-table-data:hover .data.airing-finished,
.list-table .list-table-data:hover .data.started,
.list-table .list-table-data:hover .data.finished {
background: aqua;
}
@karmashizzle thank you! The only problem now is the score not showing for plan to watch animes, I mean, none of them are scored but they don't show the box with the score. |
CLModernoMay 4, 2024 9:18 PM
May 4, 2024 9:52 PM
#356
Reply to CLModerno
@karmashizzle thank you! The only problem now is the score not showing for plan to watch animes, I mean, none of them are scored but they don't show the box with the score.
@CLModerno try this/* enable score for PTW */ .list-table .list-table-data .data.status.plantowatch ~ .data.score { display: block; } .list-table .list-table-data .data.status.plantowatch ~ .data.score .link, .status.plantowatch ~ .title .add-edit-more::before { background: whitesmoke; } actually,. replace the previous codes: .list-table .list-table-data:hover .data.genre, .list-table .list-table-data:hover .data.season, .list-table .list-table-data:hover .data.airing-started, .list-table .list-table-data:hover .data.airing-finished, .list-table .list-table-data:hover .data.started, .list-table .list-table-data:hover .data.finished { background: aqua; } with this compact one: .list-table .list-table-data:hover :is(.data.genre,.data.season,.data.airing-started,.data.airing-finished,.data.started,.data.finished) { background: aqua; } and be sure to change the color and stuff to your liking |
karmashizzleMay 4, 2024 10:02 PM
May 5, 2024 4:47 AM
#357
Reply to karmashizzle
@CLModerno try this
actually,. replace the previous codes:
with this compact one:
and be sure to change the color and stuff to your liking
/* enable score for PTW */ .list-table .list-table-data .data.status.plantowatch ~ .data.score { display: block; } .list-table .list-table-data .data.status.plantowatch ~ .data.score .link, .status.plantowatch ~ .title .add-edit-more::before { background: whitesmoke; }
actually,. replace the previous codes:
.list-table .list-table-data:hover .data.genre, .list-table .list-table-data:hover .data.season, .list-table .list-table-data:hover .data.airing-started, .list-table .list-table-data:hover .data.airing-finished, .list-table .list-table-data:hover .data.started, .list-table .list-table-data:hover .data.finished { background: aqua; }
with this compact one:
.list-table .list-table-data:hover :is(.data.genre,.data.season,.data.airing-started,.data.airing-finished,.data.started,.data.finished) { background: aqua; }
and be sure to change the color and stuff to your liking
@karmashizzle thank you! It worked well! |
May 5, 2024 5:53 PM
#358
Sorry for bothering again, but I noticed that the button to add an episode to the counter isn't working, I have to manually change it by clicking on the number itself |
May 5, 2024 6:58 PM
#359
Reply to CLModerno
Sorry for bothering again, but I noticed that the button to add an episode to the counter isn't working, I have to manually change it by clicking on the number itself
@CLModerno try [class^="icon-add-"] { position: relative; } |
May 5, 2024 7:50 PM
#360
Reply to karmashizzle
@CLModerno try
[class^="icon-add-"] { position: relative; }
@karmashizzle it worked! ty once again and sorry for bothering you |
Sep 7, 2024 1:45 AM
#361
Can anyone help me im using Takana Grid Style 5 for my anime list and just noticed today that in my anime list all 6 Banner Buttons (All Anime, Currently Watching, Completed, On Hold, Dropped and Plan to watch), they don't have anymore the little space between them and also another thing is that when scrolling through my list ive seen that some animes from my list either its new ones or old ones the key visuals are black. |
Sep 7, 2024 2:30 AM
#362
Reply to JohnnyNumbuh28
Can anyone help me im using Takana Grid Style 5 for my anime list and just noticed today that in my anime list all 6 Banner Buttons (All Anime, Currently Watching, Completed, On Hold, Dropped and Plan to watch), they don't have anymore the little space between them and also another thing is that when scrolling through my list ive seen that some animes from my list either its new ones or old ones the key visuals are black.
@JohnnyNumbuh28 Regarding recent problems with this layout, there should be an announcement post here soon via the mass message system. I'll have a lot of fixes there. One of the important links in the layout isn't working anymore (it's the Microsoft storage.live link which worked for 12 years lol). Many users have a backup import which I've activated, but unfortunately you don't have it, maybe since the code is older. The backup import is this, you can copy/paste it to the top of your CSS or replace the storage import near the top of the CSS with this. @\import "https://dl.dropboxusercontent.com/s/4u0rqtodxpjkti4/TakanaGridBackup.css"; Also many of your preview pics are dark because you have so many adds the import doesn't work anymore for you, another thing that broke this year on another site lol, but you can replace the first anime import with your username (@\import "https://malscraper.azurewebsites.net/covers/anime/JohnnyNumbuh28/presets/dataimagelinkbefore";) with this and it should fix the preview pics. @\import "https://shishiohub.github.io/Covers/dataimagelinkbefore.css"; You could also scroll down the code and remove everything between "Original layout" and "Add new codes under here". This is the original layout code which might conflict with some of the updates in the import I've given you. However this isn't necessary to remove. And always save your old codes too, you never know. That should fix most issues if not all for now. Although later there should be a full post announcement with this info in more complete detail and a manga cover fix. I have to overhaul everything to a new but reliable site lol and make a ton of new files 😞 |
Shishio-kunSep 7, 2024 2:34 AM
Sep 7, 2024 5:22 AM
#363
@Shishio-kun replaced the two imports with the new ones you shared and it worked and fixed my problems. Thank you. |
Sep 8, 2024 12:56 AM
#364
Alternate source for Grid Style 1 code{IMPORTANT: For sharper and brighter preview pics, change "USERNAME" to your username in the first two imports below. They start with @\import If needed, fix layout problems with this topic: https://myanimelist.net/forum/?topicid=439897 } @\import "https://malscraper.azurewebsites.net/covers/anime/USERNAME/presets/dataimagelinkbefore"; @\import "https://malscraper.azurewebsites.net/covers/manga/USERNAME/presets/dataimagelinkbefore"; /*Layout CSS was originally made by Takana_no_hana, edits by Shishio-kun and Valerio_Lyndon Grid Style 1, 2024 Update Learn how to customize the layout here or enhance preview pics further with this topic: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Main.css"; @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Backup.css"; @\import "https://dl.dropboxusercontent.com/s/t8qy8tlgl33czgnz5c6d4/TakanaGridBackup_2024.css?rlkey=zh8puklin5f6bkwtnz8lsoxvp"; @\import "https://fonts.googleapis.com/css?family=Orbitron"; @\import "https://fonts.googleapis.com/css?family=Amaranth"; @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Kaushan+Script|Tangerine"; /*WALLPAPERS 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. Must have .jpg or another extension at the end (.gif or .png). Save.*/ body, body.ownlist { background-image: url(http://i.imgur.com/VTrW1N1.jpg); } /*PREVIEW PICS/COVERS See the help at the top of this layout code if you have problems with blurry or missing preview pics. If you want to customize a preview pic, use the code below but change the number after "anime" to the anime's number. Get the number from the address bar on its page on MAL. For example if you go to Code Geass's page the number in the address bar is 1575. Change "anime" to "manga" to customize manga previews. This code customizes the Code Geass preview (anime #1575) if you change the background image link. Copy and paste the code to customize more preview pics, just change the number.*/ .data.image a[href^="/anime/1575/"]:before{background-image:url(https://i.imgur.com/QuPoz5o.jpg); } /*BANNER AVATAR Change the first "center" to "left" or "right" to move the picture position. Change "cover" to "contain" or remove it to change how the image fills the avatar.*/ .list-table .list-table-header:after { background-image: url(http://i.imgur.com/GH6BMvr.gif); background-position: center center; background-size: cover !important; } /*BANNER QUOTE*/ .cover-block::before { content: "I won't let go of you - I'll never let go again ... This hand was finally able to catch you!" } /*BANNER BACKGROUND AND HEIGHT If the image doesn't fit, increase the height and/or change "cover" to "contain". You may want to lower cover pics after (scroll down).*/ .list-unit.watching .list-status-title:after, .list-unit.reading .list-status-title:after, .list-unit.completed .list-status-title:after, .list-unit.onhold .list-status-title:after, .list-unit.dropped .list-status-title:after, .list-unit.plantowatch .list-status-title:after, .list-unit.plantoread .list-status-title:after, .list-unit.all_anime .list-status-title:after { background-image: url(http://i.imgur.com/W6iKnWb.png); background-size: cover !important; height: 500px !important; } /*MOVE COVER PICS UP OR DOWN Increase 0px to a higher amount like 100px to move the anime preview pics and header (Completed, etc) down. -480px brings them up to the banner buttons.*/ .list-unit .list-status-title .text,.list-item{ top: 0px; } /*BANNER BUTTON BACKGROUNDS The first image link in parenthesis is the still black and white image, the second image link is the animated image (a GIF).*/ /*ALL ANIME BANNER BUTTON*/ .status-button.all_anime { background-image:url(http://i.imgur.com/DLLqSTd.png); } .status-button.all_anime:hover,.status-button.all_anime.on { background-image:url(http://i.imgur.com/aKqWN3u.gif); } /*CURRENT BANNER BUTTON*/ .status-button.watching,.status-button.reading { background-image:url(http://i.imgur.com/5pPg4ac.png); } .status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on { background-image:url(http://i.imgur.com/WESHf5N.gif); } /*COMPLETED BANNER BUTTON*/ .status-button.completed { background-image:url(http://i.imgur.com/RlcbKxj.png); } .status-button.completed:hover,.status-button.completed.on { background-image:url(http://i.imgur.com/UMovoVS.gif); } /*ON HOLD BANNER BUTTON*/ .status-button.onhold { background-image:url(http://i.imgur.com/ASPp5y9.png); } .status-button.onhold:hover ,.status-button.onhold.on { background-image:url(http://i.imgur.com/ouJqNKc.gif); } /*DROPPED BANNER BUTTON*/ .status-button.dropped { background-image:url(http://i.imgur.com/aTKLiQg.png); } .status-button.dropped:hover,.status-button.dropped.on { background-image:url(http://i.imgur.com/sRPU8yp.gif); } /*PLANNED BANNER BUTTON*/ .status-button.plantowatch,.status-button.plantoread{ background-image:url(http://i.imgur.com/BBHhd2Z.png); } .status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on { background-image:url(http://i.imgur.com/zJYQb4x.gif); } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right". You can use negatives. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(); background-position: left bottom !important; } footer:after { right: 0%; width: 20% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/kOR31IF.png); background-position: right bottom !important; } /*ANIME/MANGA CONTAINER SETTINGS (TABLE COLORS) You can change the color with rbga colors. Generate RGBA colors here so you can replace the codes below: https://www.hexcolortool.com/ First set of colors= entire table. Second = banner. Third = default container behind an anime. Fourth = container when you point to it. Fifth = upper left menu. Sixth = top. You can set the last digit to zero to make it completely transparent.*/ .list-unit { background-color: rgba(0,0,0,.6) ; } .status-menu-container { background-color: rgba(0,0,0,.4) ; } .list-table .list-table-data { background-color: rgba(0,0,0,.2) !important; } .list-table .list-table-data:hover { background-color: rgba(0,0,0,.4) !important; } .list-menu-float .icon-menu{ background-color: rgba(0,0,0,.4) !important; } .header { background: linear-gradient(rgba(0,0,0,.4),transparent) !important; } /*CUSTOM CURSOR More here: https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/j9ZWzyT.png), auto !important; } /*FILTER MENU BACKGROUND*/ #advanced-options { background-image: url(https://i.imgur.com/h0VRsRc.png) !important; } /*MAL LOGO*/ .header .header-title{ background-image: url(https://imgur.com/E7zWfiY.png) !important; } /*GREYSCALE FOR CUSTOM CATEGORY BUTTONS Delete this to remove grey from custom buttons.*/ .status-button.watching,.status-button.reading,.status-button.completed,.status-button.onhold,.status-button.dropped,.status-button.plantowatch,.status-button.plantoread,.status-button.all_anime{ filter: grayscale(100%); } .status-button.all_anime:hover,.status-button.all_anime.on,.status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on,.status-button.dropped:hover,.status-button.dropped.on,.status-button.onhold:hover,.status-button.onhold.on,.status-button.completed:hover,.status-button.completed.on,.status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on{ filter: inherit; } {ADD NEW CODES UNDER HERE} |
Sep 8, 2024 12:57 AM
#365
Alternate source for Grid Style 5 code{IMPORTANT: For sharper and brighter preview pics, change "USERNAME" to your username in the first two imports below. They start with @\import If needed, fix layout problems with this topic: https://myanimelist.net/forum/?topicid=439897 } @\import "https://malscraper.azurewebsites.net/covers/anime/USERNAME/presets/dataimagelinkbefore"; @\import "https://malscraper.azurewebsites.net/covers/manga/USERNAME/presets/dataimagelinkbefore"; /*Layout CSS was originally made by Takana_no_hana, edits by Shishio-kun and Valerio_Lyndon Grid Style 5, 2024 Update Learn how to customize the layout here or enhance preview pics further with this topic: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Main.css"; @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Backup.css"; @\import "https://dl.dropboxusercontent.com/s/t8qy8tlgl33czgnz5c6d4/TakanaGridBackup_2024.css?rlkey=zh8puklin5f6bkwtnz8lsoxvp"; @\import "https://fonts.googleapis.com/css?family=Orbitron"; @\import "https://fonts.googleapis.com/css?family=Amaranth"; @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Kaushan+Script|Tangerine"; /*WALLPAPERS 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.*/ /*ALL ANIME/MANGA WALLPAPER*/ body[data-query*='"status":7'] { background-image: url(https://i.imgur.com/6puBJ9c.jpg); } /*CURRENTLY WATCHING WALLPAPER*/ body[data-query*='"status":1'] { background-image: url(https://i.imgur.com/3XqhN0m.jpg); } /*COMPLETED WALLPAPER*/ body[data-query*='"status":2'] { background-image: url(https://i.imgur.com/Kra2VVu.jpg); } /*ON HOLD WALLPAPER*/ body[data-query*='"status":3'] { background-image: url(https://i.imgur.com/AYIE9xb.jpg); } /*DROPPED WALLPAPER*/ body[data-query*='"status":4'] { background-image: url(https://i.imgur.com/EadWTsz.jpg); } /*PLANNED WALLPAPER*/ body[data-query*='"status":6'] { background-image: url(https://i.imgur.com/DNxYnjX.jpg); } /*PREVIEW PICS/COVERS See the help at the top of this layout code if you have problems with blurry or missing preview pics. If you want to customize a preview pic, use the code below but change the number after "anime" to the anime's number. Get the number from the address bar on its page on MAL. For example if you go to Code Geass's page the number in the address bar is 1575. Change "anime" to "manga" to customize manga previews. This code customizes the Code Geass preview (anime #1575) if you change the background image link. Copy and paste the code to customize more preview pics, just change the number.*/ .data.image a[href^="/anime/1575/"]:before{background-image:url(https://i.imgur.com/QuPoz5o.jpg); } /*BANNER AVATAR Change the first "center" to "left" or "right" to move the picture position. Change "cover" to "contain" or remove it to change how the image fills the avatar.*/ .list-table .list-table-header:after { background-image: url(http://i.imgur.com/GH6BMvr.gif); background-position: center center; background-size: cover !important; } /*BANNER QUOTE*/ .cover-block::before { content: "I won't let go of you - I'll never let go again ... This hand was finally able to catch you!" } /*BANNER BACKGROUNDS AND HEIGHT You can change the images here and adjust the height. If you can't see the whole image increase height and/or change "cover" to "contain". You may want to lower cover pics after (scroll down).*/ /*ALL ANIME/MANGA BANNER BACKGROUND*/ .list-unit.all_anime .list-status-title:after { background-image: url(http://i.imgur.com/W6iKnWb.png); background-size: cover !important; height: 500px !important; } /*CURRENTLY WATCHING BANNER BACKGROUND*/ .list-unit.watching .list-status-title:after, .list-unit.reading .list-status-title:after { background-image: url(https://i.imgur.com/H0EO4oq.png); background-size: cover !important; height: 500px !important; } /*COMPLETED BANNER BACKGROUND*/ .list-unit.completed .list-status-title:after { background-image: url(https://i.imgur.com/49bdCG6.png); background-size: cover !important; height: 500px !important; } /*ON-HOLD BANNER BACKGROUND*/ .list-unit.onhold .list-status-title:after { background-image: url(http://i.imgur.com/pPc1BRS.png); background-size: cover !important; height: 500px !important; } /*DROPPED BANNER BACKGROUND*/ .list-unit.dropped .list-status-title:after { background-image: url(http://i.imgur.com/XAbWBod.png); background-size: cover !important; height: 500px !important; } /*PLAN TO BANNER BACKGROUND*/ .list-unit.plantowatch .list-status-title:after, .list-unit.plantoread .list-status-title:after { background-image: url(https://i.imgur.com/uDF1ZIt.jpg); background-size: cover !important; height: 500px !important; } /*MOVE COVER PICS UP OR DOWN Increase 0px to a higher amount like 100px to move the anime preview pics and header (Completed, etc) down. -480px brings them up to the banner buttons. If you put [data-query*='"status":7'] at the start of the first two lines of code (with a space after), it will affect only All Anime/Manga. Example: [data-query*='"status":7'] .list-unit .list-status-title .text, [data-query*='"status":7'] .list-item Change the 7 to 1 for current, 2 for completed, 3 for hold, 4 for dropped, and 6 for planned. Copy and paste the code again if needed.*/ .list-unit .list-status-title .text, .list-item{ top: 0px; } /*BANNER BUTTON BACKGROUNDS The first image link in parenthesis is the still black and white image, the second image link is the animated image (a GIF).*/ /*ALL ANIME BANNER BUTTON*/ .status-button.all_anime { background-image:url(http://i.imgur.com/DLLqSTd.png); } .status-button.all_anime:hover,.status-button.all_anime.on { background-image:url(http://i.imgur.com/aKqWN3u.gif); } /*CURRENT BANNER BUTTON*/ .status-button.watching,.status-button.reading { background-image:url(http://i.imgur.com/5pPg4ac.png); } .status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on { background-image:url(http://i.imgur.com/WESHf5N.gif); } /*COMPLETED BANNER BUTTON*/ .status-button.completed { background-image:url(http://i.imgur.com/RlcbKxj.png); } .status-button.completed:hover,.status-button.completed.on { background-image:url(http://i.imgur.com/UMovoVS.gif); } /*ON HOLD BANNER BUTTON*/ .status-button.onhold { background-image:url(http://i.imgur.com/ASPp5y9.png); } .status-button.onhold:hover ,.status-button.onhold.on { background-image:url(http://i.imgur.com/ouJqNKc.gif); } /*DROPPED BANNER BUTTON*/ .status-button.dropped { background-image:url(http://i.imgur.com/aTKLiQg.png); } .status-button.dropped:hover,.status-button.dropped.on { background-image:url(http://i.imgur.com/sRPU8yp.gif); } /*PLANNED BANNER BUTTON*/ .status-button.plantowatch,.status-button.plantoread{ background-image:url(http://i.imgur.com/BBHhd2Z.png); } .status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on { background-image:url(http://i.imgur.com/zJYQb4x.gif); } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right". You can use negatives. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ /*ALL ANIME/MANGA RENDERS*/ [data-query*='"status":7'] footer:before { left: -6%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/UzXHkNC.png); background-position: left bottom !important; } [data-query*='"status":7'] footer:after { right: -5.5%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/Mp0HpEN.png); background-position: right bottom !important; } /*CURRENT RENDERS*/ [data-query*='"status":1'] footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/4ptF5hS.png); background-position: left bottom !important; } [data-query*='"status":1'] footer:after { right: -4%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/7Jh3h3n.png); background-position: right bottom !important; } /*COMPLETED RENDERS*/ [data-query*='"status":2'] footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/g09J9pi.png); background-position: left bottom !important; } [data-query*='"status":2'] footer:after { right: -3%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/paNwIMD.png); background-position: right bottom !important; } /*ON HOLD RENDERS*/ [data-query*='"status":3'] footer:before { left: -4%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/QUGICqR.png); background-position: left bottom !important; } [data-query*='"status":3'] footer:after { right: -4%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/5HafUBW.png); background-position: right bottom !important; } /*DROPPED RENDERS*/ [data-query*='"status":4'] footer:before { left: -2%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/08bD4Tm.png); background-position: left bottom !important; } [data-query*='"status":4'] footer:after { right: -5%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/DFFv0xB.png); background-position: right bottom !important; } /*PLANNED RENDERS*/ [data-query*='"status":6'] footer:before { left: -3.5%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/x47aHuS.png); background-position: left bottom !important; } [data-query*='"status":6'] footer:after { right: -3%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/o6kXQYq.png); background-position: right bottom !important; } /*ANIME/MANGA CONTAINER SETTINGS (TABLE COLORS) You can change the color with rbga colors. Generate RGBA colors here so you can replace the codes below: https://www.hexcolortool.com/ First set of colors= entire table. Second = banner. Third = default container behind an anime. Fourth = container when you point to it. Fifth = upper left menu. Sixth = top. You can set the last digit to zero to make it completely transparent.*/ .list-unit { background-color: rgba(0,0,0,.6) ; } .status-menu-container { background-color: rgba(0,0,0,.4) ; } .list-table .list-table-data { background-color: rgba(0,0,0,.2) !important; } .list-table .list-table-data:hover { background-color: rgba(0,0,0,.4) !important; } .list-menu-float .icon-menu{ background-color: rgba(0,0,0,.4) !important; } .header { background: linear-gradient(rgba(0,0,0,.4),transparent) !important; } /*CUSTOM CURSOR More here: https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/j9ZWzyT.png), auto !important; } /*FILTER MENU BACKGROUND*/ #advanced-options { background-image: url(https://i.imgur.com/h0VRsRc.png) !important; } /*MAL LOGO*/ .header .header-title{ background-image: url(https://imgur.com/E7zWfiY.png) !important; } /*GREYSCALE FOR CUSTOM CATEGORY BUTTONS Delete this to remove grey from custom buttons.*/ .status-button.watching,.status-button.reading,.status-button.completed,.status-button.onhold,.status-button.dropped,.status-button.plantowatch,.status-button.plantoread,.status-button.all_anime{ filter: grayscale(100%); } .status-button.all_anime:hover,.status-button.all_anime.on,.status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on,.status-button.dropped:hover,.status-button.dropped.on,.status-button.onhold:hover,.status-button.onhold.on,.status-button.completed:hover,.status-button.completed.on,.status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on{ filter: inherit; } {ADD NEW CODES UNDER HERE} |
Sep 8, 2024 1:06 AM
#366
Alternate source for Grid Style 2 code{IMPORTANT: For sharper and brighter preview pics, change "USERNAME" to your username in the first two imports below. They start with @\import If needed, fix layout problems with this topic: https://myanimelist.net/forum/?topicid=439897 } @\import "https://malscraper.azurewebsites.net/covers/anime/USERNAME/presets/dataimagelinkbefore"; @\import "https://malscraper.azurewebsites.net/covers/manga/USERNAME/presets/dataimagelinkbefore"; /*Layout CSS was originally made by Takana_no_hana, edits by Shishio-kun and Valerio_Lyndon Grid Style 2, 2024 Update Learn how to customize the layout here or enhance preview pics further with this topic: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Main.css"; @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Backup.css"; @\import "https://dl.dropboxusercontent.com/s/t8qy8tlgl33czgnz5c6d4/TakanaGridBackup_2024.css?rlkey=zh8puklin5f6bkwtnz8lsoxvp"; @\import "https://fonts.googleapis.com/css?family=Orbitron"; @\import "https://fonts.googleapis.com/css?family=Amaranth"; @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Kaushan+Script|Tangerine"; /*WALLPAPERS 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.*/ body, body.ownlist { background-image: url(http://i.imgur.com/VTrW1N1.jpg); } /*PREVIEW PICS/COVERS See the help at the top of this layout code if you have problems with blurry or missing preview pics. If you want to customize a preview pic, use the code below but change the number after "anime" to the anime's number. Get the number from the address bar on its page on MAL. For example if you go to Code Geass's page the number in the address bar is 1575. Change "anime" to "manga" to customize manga previews. This code customizes the Code Geass preview (anime #1575) if you change the background image link. Copy and paste the code to customize more preview pics, just change the number.*/ .data.image a[href^="/anime/1575/"]:before{background-image:url(https://i.imgur.com/QuPoz5o.jpg); } /*BANNER AVATAR Change the first "center" to "left" or "right" to move the picture position. Change "cover" to "contain" or remove it to change how the image fills the avatar.*/ .list-table .list-table-header:after { background-image: url(http://i.imgur.com/GH6BMvr.gif); background-position: center center; background-size: cover !important; } /*BANNER QUOTE*/ .cover-block::before { content: "I won't let go of you - I'll never let go again ... This hand was finally able to catch you!" } /*BANNER BACKGROUNDS AND HEIGHT You can change the images here and adjust the height. If you can't see the whole image increase height and/or change "cover" to "contain". You may want to lower cover pics after (scroll down).*/ /*ALL ANIME/MANGA BANNER BACKGROUND*/ .list-unit.all_anime .list-status-title:after { background-image: url(http://i.imgur.com/W6iKnWb.png); background-size: cover !important; height: 500px !important; } /*CURRENTLY WATCHING BANNER BACKGROUND*/ .list-unit.watching .list-status-title:after, .list-unit.reading .list-status-title:after { background-image: url(https://i.imgur.com/H0EO4oq.png); background-size: cover !important; height: 500px !important; } /*COMPLETED BANNER BACKGROUND*/ .list-unit.completed .list-status-title:after { background-image: url(https://i.imgur.com/49bdCG6.png); background-size: cover !important; height: 500px !important; } /*ON-HOLD BANNER BACKGROUND*/ .list-unit.onhold .list-status-title:after { background-image: url(http://i.imgur.com/pPc1BRS.png); background-size: cover !important; height: 500px !important; } /*DROPPED BANNER BACKGROUND*/ .list-unit.dropped .list-status-title:after { background-image: url(http://i.imgur.com/XAbWBod.png); background-size: cover !important; height: 500px !important; } /*PLAN TO BANNER BACKGROUND*/ .list-unit.plantowatch .list-status-title:after, .list-unit.plantoread .list-status-title:after { background-image: url(https://i.imgur.com/uDF1ZIt.jpg); background-size: cover !important; height: 500px !important; } /*MOVE COVER PICS UP OR DOWN Increase 0px to a higher amount like 100px to move the anime preview pics and header (Completed, etc) down. -480px brings them up to the banner buttons. If you put [data-query*='"status":7'] at the start of the first two lines of code (with a space after), it will affect only All Anime/Manga. Example: [data-query*='"status":7'] .list-unit .list-status-title .text, [data-query*='"status":7'] .list-item Change the 7 to 1 for current, 2 for completed, 3 for hold, 4 for dropped, and 6 for planned. Copy and paste the code again if needed.*/ .list-unit .list-status-title .text, .list-item{ top: 0px; } /*BANNER BUTTON BACKGROUNDS The first image link in parenthesis is the still black and white image, the second image link is the animated image (a GIF).*/ /*ALL ANIME BANNER BUTTON*/ .status-button.all_anime { background-image:url(http://i.imgur.com/DLLqSTd.png); } .status-button.all_anime:hover,.status-button.all_anime.on { background-image:url(http://i.imgur.com/aKqWN3u.gif); } /*CURRENT BANNER BUTTON*/ .status-button.watching,.status-button.reading { background-image:url(http://i.imgur.com/5pPg4ac.png); } .status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on { background-image:url(http://i.imgur.com/WESHf5N.gif); } /*COMPLETED BANNER BUTTON*/ .status-button.completed { background-image:url(http://i.imgur.com/RlcbKxj.png); } .status-button.completed:hover,.status-button.completed.on { background-image:url(http://i.imgur.com/UMovoVS.gif); } /*ON HOLD BANNER BUTTON*/ .status-button.onhold { background-image:url(http://i.imgur.com/ASPp5y9.png); } .status-button.onhold:hover ,.status-button.onhold.on { background-image:url(http://i.imgur.com/ouJqNKc.gif); } /*DROPPED BANNER BUTTON*/ .status-button.dropped { background-image:url(http://i.imgur.com/aTKLiQg.png); } .status-button.dropped:hover,.status-button.dropped.on { background-image:url(http://i.imgur.com/sRPU8yp.gif); } /*PLANNED BANNER BUTTON*/ .status-button.plantowatch,.status-button.plantoread{ background-image:url(http://i.imgur.com/BBHhd2Z.png); } .status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on { background-image:url(http://i.imgur.com/zJYQb4x.gif); } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right". You can use negatives. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(); background-position: left bottom !important; } footer:after { right: 0%; width: 20% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/kOR31IF.png); background-position: right bottom !important; } /*ANIME/MANGA CONTAINER SETTINGS (TABLE COLORS) You can change the color with rbga colors. Generate RGBA colors here so you can replace the codes below: https://www.hexcolortool.com/ First set of colors= entire table. Second = banner. Third = default container behind an anime. Fourth = container when you point to it. Fifth = upper left menu. Sixth = top. You can set the last digit to zero to make it completely transparent.*/ .list-unit { background-color: rgba(0,0,0,.6) ; } .status-menu-container { background-color: rgba(0,0,0,.4) ; } .list-table .list-table-data { background-color: rgba(0,0,0,.2) !important; } .list-table .list-table-data:hover { background-color: rgba(0,0,0,.4) !important; } .list-menu-float .icon-menu{ background-color: rgba(0,0,0,.4) !important; } .header { background: linear-gradient(rgba(0,0,0,.4),transparent) !important; } /*CUSTOM CURSOR More here: https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/j9ZWzyT.png), auto !important; } /*FILTER MENU BACKGROUND*/ #advanced-options { background-image: url(https://i.imgur.com/h0VRsRc.png) !important; } /*MAL LOGO*/ .header .header-title{ background-image: url(https://imgur.com/E7zWfiY.png) !important; } /*GREYSCALE FOR CUSTOM CATEGORY BUTTONS Delete this to remove grey from custom buttons.*/ .status-button.watching,.status-button.reading,.status-button.completed,.status-button.onhold,.status-button.dropped,.status-button.plantowatch,.status-button.plantoread,.status-button.all_anime{ filter: grayscale(100%); } .status-button.all_anime:hover,.status-button.all_anime.on,.status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on,.status-button.dropped:hover,.status-button.dropped.on,.status-button.onhold:hover,.status-button.onhold.on,.status-button.completed:hover,.status-button.completed.on,.status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on{ filter: inherit; } {ADD NEW CODES UNDER HERE} |
Sep 8, 2024 1:06 AM
#367
Alternate source for Grid Style 3 code{IMPORTANT: For sharper and brighter preview pics, change "USERNAME" to your username in the first two imports below. They start with @\import If needed, fix layout problems with this topic: https://myanimelist.net/forum/?topicid=439897 } @\import "https://malscraper.azurewebsites.net/covers/anime/USERNAME/presets/dataimagelinkbefore"; @\import "https://malscraper.azurewebsites.net/covers/manga/USERNAME/presets/dataimagelinkbefore"; /*Layout CSS was originally made by Takana_no_hana, edits by Shishio-kun and Valerio_Lyndon Grid Style 3, 2024 Update Learn how to customize the layout here or enhance preview pics further with this topic: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Main.css"; @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Backup.css"; @\import "https://dl.dropboxusercontent.com/s/t8qy8tlgl33czgnz5c6d4/TakanaGridBackup_2024.css?rlkey=zh8puklin5f6bkwtnz8lsoxvp"; @\import "https://fonts.googleapis.com/css?family=Orbitron"; @\import "https://fonts.googleapis.com/css?family=Amaranth"; @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Kaushan+Script|Tangerine"; /*WALLPAPERS 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.*/ /*ALL ANIME/MANGA WALLPAPER*/ body[data-query*='"status":7'] { background-image: url(https://i.imgur.com/6puBJ9c.jpg); } /*CURRENTLY WATCHING WALLPAPER*/ body[data-query*='"status":1'] { background-image: url(https://i.imgur.com/3XqhN0m.jpg); } /*COMPLETED WALLPAPER*/ body[data-query*='"status":2'] { background-image: url(https://i.imgur.com/Kra2VVu.jpg); } /*ON HOLD WALLPAPER*/ body[data-query*='"status":3'] { background-image: url(https://i.imgur.com/AYIE9xb.jpg); } /*DROPPED WALLPAPER*/ body[data-query*='"status":4'] { background-image: url(https://i.imgur.com/EadWTsz.jpg); } /*PLANNED WALLPAPER*/ body[data-query*='"status":6'] { background-image: url(https://i.imgur.com/DNxYnjX.jpg); } /*PREVIEW PICS/COVERS See the help at the top of this layout code if you have problems with blurry or missing preview pics. If you want to customize a preview pic, use the code below but change the number after "anime" to the anime's number. Get the number from the address bar on its page on MAL. For example if you go to Code Geass's page the number in the address bar is 1575. Change "anime" to "manga" to customize manga previews. This code customizes the Code Geass preview (anime #1575) if you change the background image link. Copy and paste the code to customize more preview pics, just change the number.*/ .data.image a[href^="/anime/1575/"]:before{background-image:url(https://i.imgur.com/QuPoz5o.jpg); } /*BANNER AVATAR Change the first "center" to "left" or "right" to move the picture position. Change "cover" to "contain" or remove it to change how the image fills the avatar.*/ .list-table .list-table-header:after { background-image: url(http://i.imgur.com/GH6BMvr.gif); background-position: center center; background-size: cover !important; } /*BANNER QUOTE*/ .cover-block::before { content: "I won't let go of you - I'll never let go again ... This hand was finally able to catch you!" } /*BANNER BACKGROUNDS AND HEIGHT You can change the images here and adjust the height. If you can't see the whole image increase height and/or change "cover" to "contain". You may want to lower cover pics after (scroll down).*/ /*ALL ANIME/MANGA BANNER BACKGROUND*/ .list-unit.all_anime .list-status-title:after { background-image: url(http://i.imgur.com/W6iKnWb.png); background-size: cover !important; height: 500px !important; } /*CURRENTLY WATCHING BANNER BACKGROUND*/ .list-unit.watching .list-status-title:after, .list-unit.reading .list-status-title:after { background-image: url(https://i.imgur.com/H0EO4oq.png); background-size: cover !important; height: 500px !important; } /*COMPLETED BANNER BACKGROUND*/ .list-unit.completed .list-status-title:after { background-image: url(https://i.imgur.com/49bdCG6.png); background-size: cover !important; height: 500px !important; } /*ON-HOLD BANNER BACKGROUND*/ .list-unit.onhold .list-status-title:after { background-image: url(http://i.imgur.com/pPc1BRS.png); background-size: cover !important; height: 500px !important; } /*DROPPED BANNER BACKGROUND*/ .list-unit.dropped .list-status-title:after { background-image: url(http://i.imgur.com/XAbWBod.png); background-size: cover !important; height: 500px !important; } /*PLAN TO BANNER BACKGROUND*/ .list-unit.plantowatch .list-status-title:after, .list-unit.plantoread .list-status-title:after { background-image: url(https://i.imgur.com/uDF1ZIt.jpg); background-size: cover !important; height: 500px !important; } /*MOVE COVER PICS UP OR DOWN Increase 0px to a higher amount like 100px to move the anime preview pics and header (Completed, etc) down. -480px brings them up to the banner buttons. If you put [data-query*='"status":7'] at the start of the first two lines of code (with a space after), it will affect only All Anime/Manga. Example: [data-query*='"status":7'] .list-unit .list-status-title .text, [data-query*='"status":7'] .list-item Change the 7 to 1 for current, 2 for completed, 3 for hold, 4 for dropped, and 6 for planned. Copy and paste the code again if needed.*/ .list-unit .list-status-title .text, .list-item{ top: 0px; } /*BANNER BUTTON BACKGROUNDS The first image link in parenthesis is the still black and white image, the second image link is the animated image (a GIF).*/ /*ALL ANIME BANNER BUTTON*/ .status-button.all_anime { background-image:url(http://i.imgur.com/DLLqSTd.png); } .status-button.all_anime:hover,.status-button.all_anime.on { background-image:url(http://i.imgur.com/aKqWN3u.gif); } /*CURRENT BANNER BUTTON*/ .status-button.watching,.status-button.reading { background-image:url(http://i.imgur.com/5pPg4ac.png); } .status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on { background-image:url(http://i.imgur.com/WESHf5N.gif); } /*COMPLETED BANNER BUTTON*/ .status-button.completed { background-image:url(http://i.imgur.com/RlcbKxj.png); } .status-button.completed:hover,.status-button.completed.on { background-image:url(http://i.imgur.com/UMovoVS.gif); } /*ON HOLD BANNER BUTTON*/ .status-button.onhold { background-image:url(http://i.imgur.com/ASPp5y9.png); } .status-button.onhold:hover ,.status-button.onhold.on { background-image:url(http://i.imgur.com/ouJqNKc.gif); } /*DROPPED BANNER BUTTON*/ .status-button.dropped { background-image:url(http://i.imgur.com/aTKLiQg.png); } .status-button.dropped:hover,.status-button.dropped.on { background-image:url(http://i.imgur.com/sRPU8yp.gif); } /*PLANNED BANNER BUTTON*/ .status-button.plantowatch,.status-button.plantoread{ background-image:url(http://i.imgur.com/BBHhd2Z.png); } .status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on { background-image:url(http://i.imgur.com/zJYQb4x.gif); } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right". You can use negatives. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(); background-position: left bottom !important; } footer:after { right: 0%; width: 20% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/kOR31IF.png); background-position: right bottom !important; } /*ANIME/MANGA CONTAINER SETTINGS (TABLE COLORS) You can change the color with rbga colors. Generate RGBA colors here so you can replace the codes below: https://www.hexcolortool.com/ First set of colors= entire table. Second = banner. Third = default container behind an anime. Fourth = container when you point to it. Fifth = upper left menu. Sixth = top. You can set the last digit to zero to make it completely transparent.*/ .list-unit { background-color: rgba(0,0,0,.6) ; } .status-menu-container { background-color: rgba(0,0,0,.4) ; } .list-table .list-table-data { background-color: rgba(0,0,0,.2) !important; } .list-table .list-table-data:hover { background-color: rgba(0,0,0,.4) !important; } .list-menu-float .icon-menu{ background-color: rgba(0,0,0,.4) !important; } .header { background: linear-gradient(rgba(0,0,0,.4),transparent) !important; } /*CUSTOM CURSOR More here: https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/j9ZWzyT.png), auto !important; } /*FILTER MENU BACKGROUND*/ #advanced-options { background-image: url(https://i.imgur.com/h0VRsRc.png) !important; } /*MAL LOGO*/ .header .header-title{ background-image: url(https://imgur.com/E7zWfiY.png) !important; } /*GREYSCALE FOR CUSTOM CATEGORY BUTTONS Delete this to remove grey from custom buttons.*/ .status-button.watching,.status-button.reading,.status-button.completed,.status-button.onhold,.status-button.dropped,.status-button.plantowatch,.status-button.plantoread,.status-button.all_anime{ filter: grayscale(100%); } .status-button.all_anime:hover,.status-button.all_anime.on,.status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on,.status-button.dropped:hover,.status-button.dropped.on,.status-button.onhold:hover,.status-button.onhold.on,.status-button.completed:hover,.status-button.completed.on,.status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on{ filter: inherit; } {ADD NEW CODES UNDER HERE} |
Sep 8, 2024 1:07 AM
#368
Alternate source for Grid Style 4 code{IMPORTANT: For sharper and brighter preview pics, change "USERNAME" to your username in the first two imports below. They start with @\import If needed, fix layout problems with this topic: https://myanimelist.net/forum/?topicid=439897 } @\import "https://malscraper.azurewebsites.net/covers/anime/USERNAME/presets/dataimagelinkbefore"; @\import "https://malscraper.azurewebsites.net/covers/manga/USERNAME/presets/dataimagelinkbefore"; /*Layout CSS was originally made by Takana_no_hana, edits by Shishio-kun and Valerio_Lyndon Grid Style 4, 2024 Update Learn how to customize the layout here or enhance preview pics further with this topic: https://myanimelist.net/forum/?topicid=1640096 */ @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Main.css"; @\import "https://shishiohub.github.io/Layouts/Takana_Grid_Backup.css"; @\import "https://dl.dropboxusercontent.com/s/t8qy8tlgl33czgnz5c6d4/TakanaGridBackup_2024.css?rlkey=zh8puklin5f6bkwtnz8lsoxvp"; @\import "https://fonts.googleapis.com/css?family=Orbitron"; @\import "https://fonts.googleapis.com/css?family=Amaranth"; @\import "https://fonts.googleapis.com/css?family=Rancho"; @\import "https://fonts.googleapis.com/css?family=Kaushan+Script|Tangerine"; /*WALLPAPERS 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.*/ /*ALL ANIME/MANGA WALLPAPER*/ body[data-query*='"status":7'] { background-image: url(https://i.imgur.com/6puBJ9c.jpg); } /*CURRENTLY WATCHING WALLPAPER*/ body[data-query*='"status":1'] { background-image: url(https://i.imgur.com/3XqhN0m.jpg); } /*COMPLETED WALLPAPER*/ body[data-query*='"status":2'] { background-image: url(https://i.imgur.com/Kra2VVu.jpg); } /*ON HOLD WALLPAPER*/ body[data-query*='"status":3'] { background-image: url(https://i.imgur.com/AYIE9xb.jpg); } /*DROPPED WALLPAPER*/ body[data-query*='"status":4'] { background-image: url(https://i.imgur.com/EadWTsz.jpg); } /*PLANNED WALLPAPER*/ body[data-query*='"status":6'] { background-image: url(https://i.imgur.com/DNxYnjX.jpg); } /*PREVIEW PICS/COVERS See the help at the top of this layout code if you have problems with blurry or missing preview pics. If you want to customize a preview pic, use the code below but change the number after "anime" to the anime's number. Get the number from the address bar on its page on MAL. For example if you go to Code Geass's page the number in the address bar is 1575. Change "anime" to "manga" to customize manga previews. This code customizes the Code Geass preview (anime #1575) if you change the background image link. Copy and paste the code to customize more preview pics, just change the number.*/ .data.image a[href^="/anime/1575/"]:before{background-image:url(https://i.imgur.com/QuPoz5o.jpg); } /*BANNER AVATAR Change the first "center" to "left" or "right" to move the picture position. Change "cover" to "contain" or remove it to change how the image fills the avatar.*/ .list-table .list-table-header:after { background-image: url(http://i.imgur.com/GH6BMvr.gif); background-position: center center; background-size: cover !important; } /*BANNER QUOTE*/ .cover-block::before { content: "I won't let go of you - I'll never let go again ... This hand was finally able to catch you!" } /*BANNER BACKGROUNDS AND HEIGHT You can change the images here and adjust the height. If you can't see the whole image increase height and/or change "cover" to "contain". You may want to lower cover pics after (scroll down).*/ /*ALL ANIME/MANGA BANNER BACKGROUND*/ .list-unit.all_anime .list-status-title:after { background-image: url(http://i.imgur.com/W6iKnWb.png); background-size: cover !important; height: 500px !important; } /*CURRENTLY WATCHING BANNER BACKGROUND*/ .list-unit.watching .list-status-title:after, .list-unit.reading .list-status-title:after { background-image: url(https://i.imgur.com/H0EO4oq.png); background-size: cover !important; height: 500px !important; } /*COMPLETED BANNER BACKGROUND*/ .list-unit.completed .list-status-title:after { background-image: url(https://i.imgur.com/49bdCG6.png); background-size: cover !important; height: 500px !important; } /*ON-HOLD BANNER BACKGROUND*/ .list-unit.onhold .list-status-title:after { background-image: url(http://i.imgur.com/pPc1BRS.png); background-size: cover !important; height: 500px !important; } /*DROPPED BANNER BACKGROUND*/ .list-unit.dropped .list-status-title:after { background-image: url(http://i.imgur.com/XAbWBod.png); background-size: cover !important; height: 500px !important; } /*PLAN TO BANNER BACKGROUND*/ .list-unit.plantowatch .list-status-title:after, .list-unit.plantoread .list-status-title:after { background-image: url(https://i.imgur.com/uDF1ZIt.jpg); background-size: cover !important; height: 500px !important; } /*MOVE COVER PICS UP OR DOWN Increase 0px to a higher amount like 100px to move the anime preview pics and header (Completed, etc) down. -480px brings them up to the banner buttons. If you put [data-query*='"status":7'] at the start of the first two lines of code (with a space after), it will affect only All Anime/Manga. Example: [data-query*='"status":7'] .list-unit .list-status-title .text, [data-query*='"status":7'] .list-item Change the 7 to 1 for current, 2 for completed, 3 for hold, 4 for dropped, and 6 for planned. Copy and paste the code again if needed.*/ .list-unit .list-status-title .text, .list-item{ top: 0px; } /*BANNER BUTTON BACKGROUNDS The first image link in parenthesis is the still black and white image, the second image link is the animated image (a GIF).*/ /*ALL ANIME BANNER BUTTON*/ .status-button.all_anime { background-image:url(http://i.imgur.com/DLLqSTd.png); } .status-button.all_anime:hover,.status-button.all_anime.on { background-image:url(http://i.imgur.com/aKqWN3u.gif); } /*CURRENT BANNER BUTTON*/ .status-button.watching,.status-button.reading { background-image:url(http://i.imgur.com/5pPg4ac.png); } .status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on { background-image:url(http://i.imgur.com/WESHf5N.gif); } /*COMPLETED BANNER BUTTON*/ .status-button.completed { background-image:url(http://i.imgur.com/RlcbKxj.png); } .status-button.completed:hover,.status-button.completed.on { background-image:url(http://i.imgur.com/UMovoVS.gif); } /*ON HOLD BANNER BUTTON*/ .status-button.onhold { background-image:url(http://i.imgur.com/ASPp5y9.png); } .status-button.onhold:hover ,.status-button.onhold.on { background-image:url(http://i.imgur.com/ouJqNKc.gif); } /*DROPPED BANNER BUTTON*/ .status-button.dropped { background-image:url(http://i.imgur.com/aTKLiQg.png); } .status-button.dropped:hover,.status-button.dropped.on { background-image:url(http://i.imgur.com/sRPU8yp.gif); } /*PLANNED BANNER BUTTON*/ .status-button.plantowatch,.status-button.plantoread{ background-image:url(http://i.imgur.com/BBHhd2Z.png); } .status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on { background-image:url(http://i.imgur.com/zJYQb4x.gif); } /*SIDE RENDERS (left and right) To move the renders, adjust the percentage after "left" or "right". You can use negatives. To resize the renders, adjust the percentage after "width". 0% will remove the render.*/ footer:before { left: -3%; width: 25% !important; background-size: contain !important; background-image: url(https://i.imgur.com/4ptF5hS.png); background-position: left bottom !important; } footer:after { right: -4%; width: 25% !important; background-size: contain !important;; background-image: url(https://i.imgur.com/7Jh3h3n.png); background-position: right bottom !important; } /*ANIME/MANGA CONTAINER SETTINGS (TABLE COLORS) You can change the color with rbga colors. Generate RGBA colors here so you can replace the codes below: https://www.hexcolortool.com/ First set of colors= entire table. Second = banner. Third = default container behind an anime. Fourth = container when you point to it. Fifth = upper left menu. Sixth = top. You can set the last digit to zero to make it completely transparent.*/ .list-unit { background-color: rgba(0,0,0,.6) ; } .status-menu-container { background-color: rgba(0,0,0,.4) ; } .list-table .list-table-data { background-color: rgba(0,0,0,.2) !important; } .list-table .list-table-data:hover { background-color: rgba(0,0,0,.4) !important; } .list-menu-float .icon-menu{ background-color: rgba(0,0,0,.4) !important; } .header { background: linear-gradient(rgba(0,0,0,.4),transparent) !important; } /*CUSTOM CURSOR More here: https://myanimelist.net/forum/?topicid=1903808*/ body *, :not(*) { cursor: url(https://i.imgur.com/j9ZWzyT.png), auto !important; } /*FILTER MENU BACKGROUND*/ #advanced-options { background-image: url(https://i.imgur.com/h0VRsRc.png) !important; } /*MAL LOGO*/ .header .header-title{ background-image: url(https://imgur.com/E7zWfiY.png) !important; } /*GREYSCALE FOR CUSTOM CATEGORY BUTTONS Delete this to remove grey from custom buttons.*/ .status-button.watching,.status-button.reading,.status-button.completed,.status-button.onhold,.status-button.dropped,.status-button.plantowatch,.status-button.plantoread,.status-button.all_anime{ filter: grayscale(100%); } .status-button.all_anime:hover,.status-button.all_anime.on,.status-button.plantowatch:hover,.status-button.plantowatch.on,.status-button.plantoread:hover,.status-button.plantoread.on,.status-button.dropped:hover,.status-button.dropped.on,.status-button.onhold:hover,.status-button.onhold.on,.status-button.completed:hover,.status-button.completed.on,.status-button.watching:hover,.status-button.watching.on,.status-button.reading:hover,.status-button.reading.on{ filter: inherit; } {ADD NEW CODES UNDER HERE} |
Sep 29, 2024 9:14 AM
#369
I have the utmost respect for the work you have done. These layouts are brilliant!!! |
Sep 30, 2024 2:52 AM
#370
Reply to Thecrot
I have the utmost respect for the work you have done. These layouts are brilliant!!!
@Thecrot Thank you! It's appreciated to hear |
Mar 8, 11:13 AM
#371
Hello! How can i take out that "I customized that bike for myself! It's too wild for you to handle." text? i cant find it |
Mar 8, 11:20 AM
#372
Reply to Shishio-kun
omoe said:

Made an Akira themed version of this skin just for fun and personal use, if anyone is interested...
Copy the code here
Works even when removing the grayscale code for the images coz I actually made gray thumbnails not knowing at the time that there was code for it.
Know that it does work without the grayscale code, but the code also turns the text on the pictures gray so I left it in as it's nicer with gray text.
The skin is basically exactly the same as the one shown in the video for customizing this skin, the only thing I changed in the end are the pictures including the cursor, the fonts and font sizes, I only have 2 imported fonts added in the above code and even left the old fonts in there, but I removed the fonts in my layout today, it doesn't need to import anything that isn't used, I guess that's cleaner.
I made the bottom right png render myself because I couldn't find a suitable Akira render online, so that took a little time, but I'm very satisfied with the result. However I did upload a render that I found later on that might be interesting as replacement or even as a second one for the left side (https://images2.imgbox.com/2c/b7/Uel3VS9a_o.png), feel free to use it, you might want to resize it, I didn't change the original size as I did with the render I made.
One thing I noticed in your video is that you simply put 2x gifs for each button which differs from the originally provided version in that your changed One Piece version would have continuously animating pictures even when not hovering over the pictures, I actually made grayscale picture of the first frame of the gifs, but I could have just left them in color.
BTW, thanks a lot for sharing this skin and showing how to customize it, I like it a lot.
Made an Akira themed version of this skin just for fun and personal use, if anyone is interested...
Copy the code here
Works even when removing the grayscale code for the images coz I actually made gray thumbnails not knowing at the time that there was code for it.
Know that it does work without the grayscale code, but the code also turns the text on the pictures gray so I left it in as it's nicer with gray text.
The skin is basically exactly the same as the one shown in the video for customizing this skin, the only thing I changed in the end are the pictures including the cursor, the fonts and font sizes, I only have 2 imported fonts added in the above code and even left the old fonts in there, but I removed the fonts in my layout today, it doesn't need to import anything that isn't used, I guess that's cleaner.
I made the bottom right png render myself because I couldn't find a suitable Akira render online, so that took a little time, but I'm very satisfied with the result. However I did upload a render that I found later on that might be interesting as replacement or even as a second one for the left side (https://images2.imgbox.com/2c/b7/Uel3VS9a_o.png), feel free to use it, you might want to resize it, I didn't change the original size as I did with the render I made.
One thing I noticed in your video is that you simply put 2x gifs for each button which differs from the originally provided version in that your changed One Piece version would have continuously animating pictures even when not hovering over the pictures, I actually made grayscale picture of the first frame of the gifs, but I could have just left them in color.
BTW, thanks a lot for sharing this skin and showing how to customize it, I like it a lot.
Thanks for the donated layout and feedback. I am redoing this whole topic and video for it, so I will try to keep that in mind!
@Shishio-kun Hello!! how can i edit these texts? for example "currently watching", "Completed"... i would love to change fonts and colours, but i dont know how to do that |
iozgregyMar 8, 11:41 AM
Mar 8, 12:27 PM
#373
Reply to iozgregy
@Shishio-kun Hello!! how can i edit these texts? for example "currently watching", "Completed"... i would love to change fonts and colours, but i dont know how to do that
@iozgregy Colors here, the buttons not being used are greyed until you point to them by design; you just paste these to the bottom of the CSS and change the color. Although, the layout you're using is a bit outdated /*CATEGORY TEXT*/ .list-unit .list-status-title .text{ color: red !important; } .status-menu-container .status-menu .status-button.all_anime, .status-menu-container .status-menu .status-button.watching, .status-menu-container .status-menu .status-button.reading, .status-menu-container .status-menu .status-button.completed, .status-menu-container .status-menu .status-button.onhold, .status-menu-container .status-menu .status-button.dropped, .status-menu-container .status-menu .status-button.plantowatch, .status-menu-container .status-menu .status-button.plantoread{ color: red !important; } There's more color codes in the bottom for the first post if you want more specific codes to add to the bottom and try For changing the fonts, it's a GIANT pain. I have a section on it linked at the bottom of the first post with a whole other topic. If you don't want to go through all that, you can try a font-family code I think you have already, but you need the font installed on your PC or the webpage to see it .status-menu-container .status-menu .status-button { font-family: 'FontAwesome' !important;} otherwise you'd need to use the font-installing methods to install the font to the page, which are a pain in the ass https://myanimelist.net/forum/?topicid=1792455 For the category buttons text itself there's a section on this at the bottom of the first post, all kinds of customization options are there so check there first in the future please /*CUSTOMIZE BANNER BUTTONS TEXT*/ .status-menu-container .status-menu .status-button.all_anime, .status-menu-container .status-menu .status-button.watching, .status-menu-container .status-menu .status-button.reading, .status-menu-container .status-menu .status-button.completed, .status-menu-container .status-menu .status-button.onhold, .status-menu-container .status-menu .status-button.dropped, .status-menu-container .status-menu .status-button.plantowatch, .status-menu-container .status-menu .status-button.plantoread{ font-size: 0; } .status-menu-container .status-menu .status-button.all_anime:before, .status-menu-container .status-menu .status-button.watching:before, .status-menu-container .status-menu .status-button.reading:before, .status-menu-container .status-menu .status-button.completed:before, .status-menu-container .status-menu .status-button.onhold:before, .status-menu-container .status-menu .status-button.dropped:before, .status-menu-container .status-menu .status-button.plantowatch:before, .status-menu-container .status-menu .status-button.plantoread:before { top: -45px; position: relative; width: 150px;} .status-menu-container .status-menu .status-button.all_anime:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.watching:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.reading:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.completed:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.onhold:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.dropped:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.plantowatch:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.plantoread:before{ content: "text"; font-size: 40px;} For customizing the actual banner text, try the topic on it https://myanimelist.net/forum/?topicid=1930157 |
Mar 8, 12:29 PM
#374
Reply to iozgregy
Hello! How can i take out that "I customized that bike for myself! It's too wild for you to handle." text? i cant find it
@iozgregy You already changed this. It's in the code near the top under Banner quote. If you leave a question and answer it yourself, please edit or delete your question in the future. |
Mar 8, 12:49 PM
#375
Reply to Shishio-kun
@iozgregy You already changed this. It's in the code near the top under Banner quote.
If you leave a question and answer it yourself, please edit or delete your question in the future.
If you leave a question and answer it yourself, please edit or delete your question in the future.
@Shishio-kun Sorry, i only noticed later, thank you anyways!! |
Mar 8, 5:18 PM
#376
Reply to iozgregy
@Shishio-kun Sorry, i only noticed later, thank you anyways!!
@iozgregy No worries and feel free to ask if you can't find something or need more help; good luck with the designing! |
Mar 8, 5:40 PM
#377
Reply to Shishio-kun
@iozgregy
Colors here, the buttons not being used are greyed until you point to them by design; you just paste these to the bottom of the CSS and change the color. Although, the layout you're using is a bit outdated
/*CATEGORY TEXT*/
.list-unit .list-status-title .text{
color: red !important;
}
.status-menu-container .status-menu .status-button.all_anime,
.status-menu-container .status-menu .status-button.watching,
.status-menu-container .status-menu .status-button.reading,
.status-menu-container .status-menu .status-button.completed,
.status-menu-container .status-menu .status-button.onhold,
.status-menu-container .status-menu .status-button.dropped,
.status-menu-container .status-menu .status-button.plantowatch,
.status-menu-container .status-menu .status-button.plantoread{
color: red !important;
}
There's more color codes in the bottom for the first post if you want more specific codes to add to the bottom and try
For changing the fonts, it's a GIANT pain. I have a section on it linked at the bottom of the first post with a whole other topic. If you don't want to go through all that, you can try a font-family code I think you have already, but you need the font installed on your PC or the webpage to see it
.status-menu-container .status-menu .status-button {
font-family: 'FontAwesome' !important;}
otherwise you'd need to use the font-installing methods to install the font to the page, which are a pain in the ass
https://myanimelist.net/forum/?topicid=1792455
For the category buttons text itself there's a section on this at the bottom of the first post, all kinds of customization options are there so check there first in the future please
For customizing the actual banner text, try the topic on it
https://myanimelist.net/forum/?topicid=1930157
Colors here, the buttons not being used are greyed until you point to them by design; you just paste these to the bottom of the CSS and change the color. Although, the layout you're using is a bit outdated
/*CATEGORY TEXT*/
.list-unit .list-status-title .text{
color: red !important;
}
.status-menu-container .status-menu .status-button.all_anime,
.status-menu-container .status-menu .status-button.watching,
.status-menu-container .status-menu .status-button.reading,
.status-menu-container .status-menu .status-button.completed,
.status-menu-container .status-menu .status-button.onhold,
.status-menu-container .status-menu .status-button.dropped,
.status-menu-container .status-menu .status-button.plantowatch,
.status-menu-container .status-menu .status-button.plantoread{
color: red !important;
}
There's more color codes in the bottom for the first post if you want more specific codes to add to the bottom and try
For changing the fonts, it's a GIANT pain. I have a section on it linked at the bottom of the first post with a whole other topic. If you don't want to go through all that, you can try a font-family code I think you have already, but you need the font installed on your PC or the webpage to see it
.status-menu-container .status-menu .status-button {
font-family: 'FontAwesome' !important;}
otherwise you'd need to use the font-installing methods to install the font to the page, which are a pain in the ass
https://myanimelist.net/forum/?topicid=1792455
For the category buttons text itself there's a section on this at the bottom of the first post, all kinds of customization options are there so check there first in the future please
/*CUSTOMIZE BANNER BUTTONS TEXT*/ .status-menu-container .status-menu .status-button.all_anime, .status-menu-container .status-menu .status-button.watching, .status-menu-container .status-menu .status-button.reading, .status-menu-container .status-menu .status-button.completed, .status-menu-container .status-menu .status-button.onhold, .status-menu-container .status-menu .status-button.dropped, .status-menu-container .status-menu .status-button.plantowatch, .status-menu-container .status-menu .status-button.plantoread{ font-size: 0; } .status-menu-container .status-menu .status-button.all_anime:before, .status-menu-container .status-menu .status-button.watching:before, .status-menu-container .status-menu .status-button.reading:before, .status-menu-container .status-menu .status-button.completed:before, .status-menu-container .status-menu .status-button.onhold:before, .status-menu-container .status-menu .status-button.dropped:before, .status-menu-container .status-menu .status-button.plantowatch:before, .status-menu-container .status-menu .status-button.plantoread:before { top: -45px; position: relative; width: 150px;} .status-menu-container .status-menu .status-button.all_anime:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.watching:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.reading:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.completed:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.onhold:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.dropped:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.plantowatch:before{ content: "text"; font-size: 40px;} .status-menu-container .status-menu .status-button.plantoread:before{ content: "text"; font-size: 40px;}
For customizing the actual banner text, try the topic on it
https://myanimelist.net/forum/?topicid=1930157
@Shishio-kun when i read "the layout you're using is a bit outdated" I started to see how cooked I am (more than I already knew)😭 That's even worse than pain JKASJKDAKS, I even decided to take a break. THANK YOU SO MUCH SERIOUSLY, I didn't expect to get a reply and you're so nice❤❤ I'm using the video from the forum you send me btw ("How to change fonts on a list layout"). |
Mar 8, 5:42 PM
#378
Reply to Shishio-kun
@iozgregy No worries and feel free to ask if you can't find something or need more help; good luck with the designing!
@Shishio-kun Thank you so much and okay!!:D (and I hope I get some with It😭) |
Mar 10, 6:56 AM
#379
Mar 10, 6:30 PM
#380
Reply to cosmicskye
Hi, I'm trying to apply Shinobu Layou to my list, but when I apply the code the layout looks weird, everything is out of order, and I'm copying and pasting exactly the same code, can anyone help me?

@cosmicskye It looks fine on your list when I apply it, so I'd have to see the code on you list to figure out the problem. The image in your post isn't working either. |
Mar 12, 8:35 AM
#381
Reply to Shishio-kun
@cosmicskye It looks fine on your list when I apply it, so I'd have to see the code on you list to figure out the problem. The image in your post isn't working either.
@Shishio-kun I managed to solve the problem, apparently it was something on the work computer (lol), sorry to have bothered you, thanks for answering me |
9 hours ago
#382
Here's myanimelist username: KabukiChouNights |
More topics from this board
» theme helpthreat - 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 FixesShishio-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 ListsYasminaRegina - Jul 25 |
2 |
by YasminaRegina
»»
Jul 26, 1:02 AM |
|
Sticky: » 💚 [REPAIR STICKY] Repair/speed up layouts + Request layout fixes ( 1 2 )Shishio-kun - Nov 17, 2023 |
52 |
by LucaBalsa
»»
Jul 6, 2:02 PM |