New
Oct 18, 2020 1:58 AM
#6451
I0me0 said: Thanks. Everything is right but just having a problem with my avatar banner. After selecting a picture it only covered half of the banner (avatar slot) If u have any solution please let me know. It will be appreciated. If i was not able to explain please view my mal. You will understand what i mean't. Thanks If I follow you, then try adding one of these to the bottom of your CSS. They should both force the avatar to fill the space, although with slightly different methods. .list-table .list-table-header::after { background-size: cover; } .list-table .list-table-header::after { background-size: 100% 100%; } Or, if those don't to what you wanted because you meant the large banner above the list, then use one of these instead: #list-container .list-status-title::after { background-size: cover; } #list-container .list-status-title::after { background-size: 100% 100%; } |
Oct 18, 2020 2:25 AM
#6452
kaylyn said: I'm currently using this theme: https://myanimelist.net/forum/?topicid=1863392 How do I add the menu buttons (quick add, anime list, manga list)? And would I be able to position the buttons above my name? This code should do that. Just add it to the bottom of your CSS. /* ADD BUTTONS ABOVE NAME */ .list-menu-float { top: 330px; height: 120px; display: flex !important; flex-flow: row wrap; justify-content: center; align-items: flex-end; } .icon-menu.profile { position: absolute; top: 120px; left: 0; width: 100%; } [data-owner=""] .icon-menu.profile { visibility: hidden; } .list-menu-float .icon-menu:not(.profile) { display: block; width: 46px !important; height: 46px; margin: 5px; border: 1px solid #e8e8e8; flex: 0 0 auto; background: none; background: rgba(92,99,145,.2); border-radius: 25px; } .list-menu-float .icon-menu svg.icon { fill: #e8e8e8; transition: fill 0.15s ease; } .list-menu-float .icon-menu:not(.setting) .text { top: auto; bottom: 56px; left: 50%; transform: translate(-50%); pointer-events: none; } .list-menu-float .icon-menu.setting .text, .list-menu-float .icon-menu.setting:hover .text { top: 50% !important; left: 50%; transform: translate(-50%, -50%); height: 90px; } .list-menu-float .icon-menu.setting:hover .text { width: 150px; } .list-menu-float .icon-menu.setting .text .link-list-setting, .list-menu-float .icon-menu.setting .text .link-style-setting, .list-menu-float .icon-menu.setting:hover .text .link-list-setting, .list-menu-float .icon-menu.setting:hover .text .link-style-setting { position: static; width: 150px; height: 30px; background: none; border: none; margin-bottom: 30px; line-height: 30px; } It will look like this: |
Oct 18, 2020 2:26 AM
#6453
HollowYears said: Is it possible to change the direction link of the regular anime and manga buttons on a profile? For example for my profile, I would like it to lead to this link, in stead of the regular link that works in general. It would be nice if it could show the scores from 10-1 right away. Only for yourself, not for other people. If you want people to be directed to that link, I'd recommend putting a big in-your-face image about it on your profile. You can see the BBcode tutorials in this club if you need help doing that. |
Oct 18, 2020 2:28 AM
#6454
-Zephyr- said: So I'm working on a graphic for my profile (not list layout) and it's gonna be 1 graphic with everything on top of it. On my current profile, I have a list with spoiler buttons for my top 10 favorite anime openings. How, if possible, can I apply such a list on the type of layout I'm working on? Thanks! You can have a spoiler as you do now with graphics inside the spoiler, or you can have it all displayed from the get-go in your graphic (with no spoiler). Unfortunately it's not possible to stylize the spoiler dropdown, if that is what you are asking. |
Oct 18, 2020 4:33 AM
#6455
Valerio_Lyndon said: I0me0 said: Thanks. Everything is right but just having a problem with my avatar banner. After selecting a picture it only covered half of the banner (avatar slot) If u have any solution please let me know. It will be appreciated. If i was not able to explain please view my mal. You will understand what i mean't. Thanks If I follow you, then try adding one of these to the bottom of your CSS. They should both force the avatar to fill the space, although with slightly different methods. .list-table .list-table-header::after { background-size: cover; } .list-table .list-table-header::after { background-size: 100% 100%; } Or, if those don't to what you wanted because you meant the large banner above the list, then use one of these instead: #list-container .list-status-title::after { background-size: cover; } #list-container .list-status-title::after { background-size: 100% 100%; } Thank you very much! The problem was solved. |
Oct 18, 2020 8:12 AM
#6456
So I decided to try another design, which is similar to the interface of a mmo. Atm I'm trying to put everything in its position. While doing that i encountered a few problems. 1) I'm trying to implement the anime stats graph from my profile into my list. Giving it a height, width, color and a set its position won't work. (Doesn't show up) 2) I want to add condicional statements that show different images based on the ratings. What is the best way to do that since mal only allows the use of css. |
Oct 18, 2020 1:26 PM
#6457
Valerio_Lyndon said: kaylyn said: I'm currently using this theme: https://myanimelist.net/forum/?topicid=1863392 How do I add the menu buttons (quick add, anime list, manga list)? And would I be able to position the buttons above my name? This code should do that. Just add it to the bottom of your CSS. /* ADD BUTTONS ABOVE NAME */ .list-menu-float { top: 330px; height: 120px; display: flex !important; flex-flow: row wrap; justify-content: center; align-items: flex-end; } .icon-menu.profile { position: absolute; top: 120px; left: 0; width: 100%; } [data-owner=""] .icon-menu.profile { visibility: hidden; } .list-menu-float .icon-menu:not(.profile) { display: block; width: 46px !important; height: 46px; margin: 5px; border: 1px solid #e8e8e8; flex: 0 0 auto; background: none; background: rgba(92,99,145,.2); border-radius: 25px; } .list-menu-float .icon-menu svg.icon { fill: #e8e8e8; transition: fill 0.15s ease; } .list-menu-float .icon-menu:not(.setting) .text { top: auto; bottom: 56px; left: 50%; transform: translate(-50%); pointer-events: none; } .list-menu-float .icon-menu.setting .text, .list-menu-float .icon-menu.setting:hover .text { top: 50% !important; left: 50%; transform: translate(-50%, -50%); height: 90px; } .list-menu-float .icon-menu.setting:hover .text { width: 150px; } .list-menu-float .icon-menu.setting .text .link-list-setting, .list-menu-float .icon-menu.setting .text .link-style-setting, .list-menu-float .icon-menu.setting:hover .text .link-list-setting, .list-menu-float .icon-menu.setting:hover .text .link-style-setting { position: static; width: 150px; height: 30px; background: none; border: none; margin-bottom: 30px; line-height: 30px; } It will look like this: Thank you! Thats exactly what I wanted. Is there a way I can hide some of the buttons? For example, I don't want the export, list settings, or logout buttons to show. Edit: accidentally quoted twice |
Oct 18, 2020 1:45 PM
#6458
kaylyn said: Valerio_Lyndon said: kaylyn said: I'm currently using this theme: https://myanimelist.net/forum/?topicid=1863392 How do I add the menu buttons (quick add, anime list, manga list)? And would I be able to position the buttons above my name? This code should do that. Thank you! Thats exactly what I wanted. Is there a way I can hide some of the buttons? For example, I don't want the export, list settings, or logout buttons to show. Yep, that's possible. :) Just add this below everything else. .list-menu-float .icon-menu.export, .list-menu-float .icon-menu.setting, .list-menu-float form { display: none; } |
Oct 18, 2020 6:41 PM
#6459
Valerio_Lyndon said: Uji_Gintoki_Bowl said: I checked out the Javascript and saw that it outputs for synopsis as well with [DESC], but the css is stored the same way that score is, so I cannot do that addition to my list separately. As such, I'm sure the ".progress" part of the print at the beginning has to be changed to something else. … I basically need some css similar to the generic formatting for an entry's MAL score (which I recieved from Valerio_Lyndon - thank you so much) but as a pop-up, and some small edit to the tool to give me css that doesn't intersect with the css that was outputted for MAL Score. My idea is below: https://i.imgur.com/IUYV6GM.jpg https://i.imgur.com/oXmE59C.jpg The tool actually supports quite complex templates, so it's possible to do two different things with the CSS at the same time. I go into how to do this below, but the way I did it removes the brackets around the "rewatching" and "rereading" texts. There wasn't another way to achieve a button that you can hover over without co-opting some space elsewhere. Example of how rewatch text will look: Now, onto adding the synopsis. You can change the template the tool uses at any time by changing the right-most field at the top: Another way is to change the template within the bookmark itself if you wish, which will make sure you don't have to do it manually each time you open it. Either way, here is the new template: /* [TITLE] *[DEL]/ .progress-[ID]:after {content: "MAL - [SCORE]";} .title a[href*="/[ID]/"] ~ [class^="re"]:after {content: "SYNOPSIS\a\a[DESC]";} And if you so wish, a new version of the bookmark with the template coded in so you don't have to change it each time: [Code] In this version I also changed it so line breaks are maintained since you had them in your screenshot. Originally, the tool removed line breaks from the synopsis. Next, you can add this CSS to your code to style the synopses. Add it either to the bottom or in the same spot as your MAL score code. /* SYNOPSIS BASIS */ .rewatching, .rereading { display: inline !important; pointer-events: none; } .rewatching:before, .rewatching:after, .rereading:before, .rereading:after { content: none; } /* SYNOPSIS BUTTON */ .title a ~ [class^="re"]::before { content: "Synopsis"; position: absolute; right: -35px; top: calc(50% + 26px); z-index: 1; width: 70px; padding: 5px; background: black; border-radius: 10%; font: 12px Inconsolata, monospace; text-align: center; transform: translate(50%, -50%); pointer-events: auto; } /* SYNOPSES ON HOVER */ .title a ~ [class^="re"]::after { position: absolute; right: -35px; top: calc(50% + 26px); z-index: 2; width: 450px; padding: 10px; border-radius: 5px; background: black; font-size: 12px; line-height: 1.35; text-align: center; white-space: pre-wrap; transform: translate(50%, -50%); opacity: 0; transition: opacity 0.1s ease; } .title a ~ [class^="re"]:hover::after { opacity: 1; } The code is positioned a little off centre, so it doesn't overlap the score, but you can fix that by changing both of their "top" values by about 15px. Example (this can be changed in the code you already have if you know where you're looking, else just added to the bottom): .progress div:after { top: calc(50% - 35px); } .title a ~ [class^="re"]::before, .title a ~ [class^="re"]::after { top: calc(50% + 11px); } Also, with synopses being added, I expect you may hit the character limit on custom CSS quite fast, so I made up a guide on how to host a file on Dropbox. The reason to host on Dropbox is that it circumvents the character limit MAL implements, allowing us to load as much CSS as we wish. If you ever notice your code getting cut off after saving, it's because you've hit the limit. You don't have to do it unless you notice the code starts cutting off, but if you don't then just keep it in mind for the future. :) This guide assumes you use Windows, because I don't know enough about Mac or Linux to write that off the top of my head. Before anything else, make sure you are able to see file extensions on your computer. See how here: Enabling file extensions.. This will prevent issues later.
Whatever CSS you put inside of the file should now be loaded onto your list next time you visit it. --- There was a lot of info in this reply, so hopefully I made it all understandable. Thank you so much - this is fantastic! I ended up getting it all in, but there is just one thing. I was thinking for the synopsis part to be more like a button, where you click on it, and a pop-up comes, similar to how the filter works. If this is not possible, that's okay, but I was wondering if it is. If so, is it just the code below that must be changed, or does the loaded css have to be changed? /* SYNOPSIS BASIS */ .rewatching, .rereading { display: inline !important; pointer-events: none; } .rewatching:before, .rewatching:after, .rereading:before, .rereading:after { content: none; } /* SYNOPSIS BUTTON */ .title a ~ [class^="re"]::before { content: "Synopsis"; position: absolute; right: -35px; top: calc(50% + 26px); z-index: 1; width: 70px; padding: 5px; background: black; border-radius: 10%; font: 12px Inconsolata, monospace; text-align: center; transform: translate(50%, -50%); pointer-events: auto; } /* SYNOPSES ON HOVER */ .title a ~ [class^="re"]::after { position: absolute; right: -35px; top: calc(50% + 26px); z-index: 2; width: 450px; padding: 10px; border-radius: 5px; background: black; font-size: 12px; line-height: 1.35; text-align: center; white-space: pre-wrap; transform: translate(50%, -50%); opacity: 0; transition: opacity 0.1s ease; } .title a ~ [class^="re"]:hover::after { opacity: 1; } Again, I hope this isn't impossible, and thank you so much! Edit: I edited the positioning and stuff of the synopsis so it's better. If the button and pop-up aren't possible, I think that's okay cuz it looks nicer now. I'd still like to know if it is possible to add extra buttons in. Thanks again. |
Uji_Gintoki_BowlOct 19, 2020 5:26 AM
Please sign up for MangAlert! It's a little project I made that I'd really like to see the light of day and some users. MangAlert! (please sign up!) GitHub Repo (please star!) |
Oct 19, 2020 4:42 AM
#6460
Valerio_Lyndon said: -Zephyr- said: So I'm working on a graphic for my profile (not list layout) and it's gonna be 1 graphic with everything on top of it. On my current profile, I have a list with spoiler buttons for my top 10 favorite anime openings. How, if possible, can I apply such a list on the type of layout I'm working on? Thanks! You can have a spoiler as you do now with graphics inside the spoiler, or you can have it all displayed from the get-go in your graphic (with no spoiler). Unfortunately it's not possible to stylize the spoiler dropdown, if that is what you are asking. Hey thanks! Yeah I was only asking because I would imagine that if I add a spoiler button on the graphic since it's going to be split up into pieces for buttons/links, when the spoiler button is clicked it may split and distort the graphic a bit. |
Oct 20, 2020 12:02 AM
#6461
Uji_Gintoki_Bowl said: I was thinking for the synopsis part to be more like a button, where you click on it, and a pop-up comes, similar to how the filter works. If this is not possible, that's okay, but I was wondering if it is. If so, is it just the code below that must be changed, or does the loaded css have to be changed? You can make the synopsis only activate when you click on it by adding this new CSS. But, it will still deactivate once you take your mouse off the area, and can't quite emulate the functionality of something like the filter menu. /* Behavioural Change for Synopsis Button */ .add-edit-more:before { content: ""; z-index: 2; position: absolute; right: -35px; top: calc(50% + 12.5px); width: 77.5px; height: 21.5px; border-radius: 10%; transform: translate(50%, -50%); cursor: pointer; } .add-edit-more:active:before, [class^="re"]:hover ~ .add-edit-more { pointer-events: none; } |
Oct 20, 2020 12:22 AM
#6462
CelbreX said: So I decided to try another design, which is similar to the interface of a mmo. Atm I'm trying to put everything in its position. While doing that i encountered a few problems. 1) I'm trying to implement the anime stats graph from my profile into my list. Giving it a height, width, color and a set its position won't work. (Doesn't show up) Could you provide the code that isn't working? Reasons why it may not work are very varied and specific to each case, so it'll be easier to debug what you have instead of listing off 100 ways it might be going wrong. CelbreX said: 2) I want to add condicional statements that show different images based on the ratings. What is the best way to do that since mal only allows the use of css. So you want different styling depending on the score of each item? As in, a score of 7 would have different styling than a score of 8. Am I correct? If so, this is possible, yes. Normally, styling based on the contents of a section isn't possible, but due to a recent addition MAL made to the HTML, there are some classes which the CSS can hook onto. It's not quite the same as conditional or "if" statements, since it's just using what we are provided by the HTML, but it will serve the same purpose here. An example of this code can be found in the spoiler below. All these classes can be found by looking through the HTML using your browsers' Inspect Element tool. /* Generic selector for the section we are going to be giving per-score styling */ .data.score .score-label { display: inline-block; width: 50px; height: 50px; background-size: cover; } /* Per-score selectors */ .data.score .score-na { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-1 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-2 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-3 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-4 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-5 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-6 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-7 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-8 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-9 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-10 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } If you need any help getting it to display the images you want, you can share what images you wanted to use and describe how they should display and I can most likely help. |
Oct 20, 2020 4:08 AM
#6463
Valerio_Lyndon said: Uji_Gintoki_Bowl said: I was thinking for the synopsis part to be more like a button, where you click on it, and a pop-up comes, similar to how the filter works. If this is not possible, that's okay, but I was wondering if it is. If so, is it just the code below that must be changed, or does the loaded css have to be changed? You can make the synopsis only activate when you click on it by adding this new CSS. But, it will still deactivate once you take your mouse off the area, and can't quite emulate the functionality of something like the filter menu. /* Behavioural Change for Synopsis Button */ .add-edit-more:before { content: ""; z-index: 2; position: absolute; right: -35px; top: calc(50% + 12.5px); width: 77.5px; height: 21.5px; border-radius: 10%; transform: translate(50%, -50%); cursor: pointer; } .add-edit-more:active:before, [class^="re"]:hover ~ .add-edit-more { pointer-events: none; } Hmm, I'll keep it in mind. It does make it more obscure for people viewing so I may or may not use it. Is there possibly even a way to make the synopsis text a toggle button, where every time I click it, the blurb switches between being there and not? |
Uji_Gintoki_BowlOct 20, 2020 2:39 PM
Please sign up for MangAlert! It's a little project I made that I'd really like to see the light of day and some users. MangAlert! (please sign up!) GitHub Repo (please star!) |
Oct 20, 2020 4:15 AM
#6464
[quote=Valerio_Lyndon message=60960651] CelbreX said: Could you provide the code that isn't working? Reasons why it may not work are very varied and specific to each case, so it'll be easier to debug what you have instead of listing off 100 ways it might be going wrong. https://pastebin.pl/view/e0164eb6 Here is my entire code so far. Its pretty messy and probably has some unnecessary stuff in it. You can find it from lines 209-220. Valerio_Lyndon said: So you want different styling depending on the score of each item? As in, a score of 7 would have different styling than a score of 8. Am I correct? If so, this is possible, yes. Normally, styling based on the contents of a section isn't possible, but due to a recent addition MAL made to the HTML, there are some classes which the CSS can hook onto. It's not quite the same as conditional or "if" statements, since it's just using what we are provided by the HTML, but it will serve the same purpose here. An example of this code can be found in the spoiler below. All these classes can be found by looking through the HTML using your browsers' Inspect Element tool. /* Generic selector for the section we are going to be giving per-score styling */ .data.score .score-label { display: inline-block; width: 50px; height: 50px; background-size: cover; } /* Per-score selectors */ .data.score .score-na { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-1 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-2 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-3 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-4 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-5 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-6 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-7 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-8 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-9 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } .data.score .score-10 { background-image: url(https://i.imgur.com/ZtSmAzD.png); } If you need any help getting it to display the images you want, you can share what images you wanted to use and describe how they should display and I can most likely help. Thanks for the code and explaination. I should be able to adjust it from now on. |
Oct 21, 2020 10:26 PM
#6465
Uji_Gintoki_Bowl said: Is there possibly even a way to make the synopsis text a toggle button, where every time I click it, the blurb switches between being there and not? As odd as it may seem, there is not. That would require a change to the HTML (the base layer of the page), which unfortunately we don't have access to. This semi-button is as far as CSS can be pushed in this regard. |
Oct 22, 2020 1:37 AM
#6466
CelbreX said: https://pastebin.pl/view/e0164eb6 Here is my entire code so far. Its pretty messy and probably has some unnecessary stuff in it. You can find it from lines 209-220. Ah, I see. I take it this is the code in question, and you wanted the graph from the profile to display. .profile .user-statistics .stats-graph.mt8 { background-color: #f6f6f6; border-radius: 2px; display: block; height: 18px; margin: 0 auto; overflow: hidden; width: 380px; position:fixed; top:400px; left:300px; z-inedx:10; } The reason this isn't working is because CSS can only style what is on the page, and can't create new elements. This element (the .stats-graph) only exists on the profile page. There is no such stats-graph on the animelist, so the page ignores this CSS. Each CSS selector (the bit before the curly braces) has to match some HTML on the specific page it is on. I originally thought you meant a graph from Anime+ like this one: Adding in a custom image-based graph like the one above is possible by adding it as a background-image to an element of our choosing. But, there isn't a way of getting MAL's profile graph onto the animelist. Or at least, not an auto-updating one. You could take a screenshot of your profile and put that on the list, but it'd be a pain to keep it updated. |
Valerio_LyndonOct 22, 2020 1:42 AM
Oct 22, 2020 9:55 AM
#6467
Valerio_Lyndon said: The reason this isn't working is because CSS can only style what is on the page, and can't create new elements. This element (the .stats-graph) only exists on the profile page. There is no such stats-graph on the animelist, so the page ignores this CSS. Each CSS selector (the bit before the curly braces) has to match some HTML on the specific page it is on. Well that is unfortunate. Thanks again for explaining that :) |
Oct 22, 2020 1:40 PM
#6468
Valerio_Lyndon said: Uji_Gintoki_Bowl said: Is there possibly even a way to make the synopsis text a toggle button, where every time I click it, the blurb switches between being there and not? As odd as it may seem, there is not. That would require a change to the HTML (the base layer of the page), which unfortunately we don't have access to. This semi-button is as far as CSS can be pushed in this regard. Ah, that's okay. Thank you for your help in getting all of these features into my list! I really appreciate it. EDIT: Ah, I've run into a major(ish) problem with the synopsis thing. I have MALSync (browser extension to auto update) downloaded on chrome and it edit's site info to display certain extra things. It also is somehow interfering with the display for the descriptions such that when I hover over the area where a synopsis would be, it pops up, with a hyperlink to a source to watch it (only for shows which I've visited using the extension before). Thsi gives you an idea: https://streamable.com/fq90ws Nvm, I fixed it by disabling certain things on the browser extension. |
Uji_Gintoki_BowlOct 23, 2020 2:08 PM
Please sign up for MangAlert! It's a little project I made that I'd really like to see the light of day and some users. MangAlert! (please sign up!) GitHub Repo (please star!) |
Oct 25, 2020 10:47 PM
#6469
mooshyloo said: Hello guys I have a question. I'd like to use spectrojan's anime list CSS Code because it is absolutely amazing and it seems to allow you to make sub-ratings of an anime. How can I get his CSS code? his anime list link is https://myanimelist.net/animelist/spectrojan?status=2&order=4&order2=0 Moving your post here the code is @\import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Theme%20-%20Compressed.css"; @\import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Dark%20Mode%20Compressed.css"; body { --avatar: url(https://cdn.myanimelist.net/images/userimages/9740834.jpg?t=1595847000); } body { --name: "Spectrojan"; } body { --character: url(https://i.imgur.com/HmjSNpQ.png) He adds the scores like this with his tags (this is his list without the CSS) |
Nov 1, 2020 6:12 PM
#6470
Hello, I'm having trouble customizing this modern list layout. I'm trying to change the color of the anime and manga list icons. I have no issues with the custom color while logged in. Whenever I am logged out, the icons stay their original black color. What can I do to have the custom color show up to other users? Logged in example: Logged out example: |
Nov 1, 2020 11:29 PM
#6471
shortypi said: Hello, I'm having trouble customizing this modern list layout. I'm trying to change the color of the anime and manga list icons. I have no issues with the custom color while logged in. Whenever I am logged out, the icons stay their original black color. What can I do to have the custom color show up to other users? Logged in example: Logged out example: What's your CSS code? Maybe .anime #header-menu-button:before and .manga #header-menu-button:before have to have an SVG extension icon for the CSS fill codes to work on them? Could you use pink png icons for those codes instead? |
Nov 2, 2020 1:35 AM
#6472
Shishio-kun said: shortypi said: Hello, I'm having trouble customizing this modern list layout. I'm trying to change the color of the anime and manga list icons. I have no issues with the custom color while logged in. Whenever I am logged out, the icons stay their original black color. What can I do to have the custom color show up to other users? Logged in example: Logged out example: What's your CSS code? Maybe .anime #header-menu-button:before and .manga #header-menu-button:before have to have an SVG extension icon for the CSS fill codes to work on them? Could you use pink png icons for those codes instead? /* "Dashboard" * List design by 5cm * Modified by Valerio Lyndon * Original date: 2020-JUL-28 * Revision date: 2020-AUG-09 */ /* Changelog: - Fixed entries after 300 not loading when layout viewed on large screens. - Unified menu button appearance on hover. - Fixed white pixels above MAL logo. */ @\import "https://fonts.googleapis.com/css?family=Source+Sans+Pro"; :root { --background: url(https://i.imgur.com/aRnArqY.png) fixed center/cover } body { background: var(--background) !important; width: 1058px; font: 11px Source Sans Pro; letter-spacing: 1px; text-transform: uppercase; padding: 70px 0 0; margin: auto; } body::before, body::after { content: ""; position: fixed; top: 68px; left: calc(50% - 529px); width: 1058px; height: 541px; border-radius: 10px; pointer-events: none; } body::before { z-index: 60; background: linear-gradient(to right, #ffd1dc 160px, #fff 160px); } body::after { z-index: 110; box-shadow: 0 8px 20px rgba(255,225,232); } a {color: #ffbbcb;} #header-menu-button .fa, [data-owner=""] .list-menu-float, .cover-block, .list-menu-float .icon-menu.export, .list-menu-float .icon-menu.setting svg.icon-setting, .list-unit .list-status-title .text, #show-stats-button, .list-unit:not(.all_anime) .status, .icon-watch.ml4,[data-owner=""] .add-edit-more span, .more, .list-table .list-table-data .tags .edit, .list-unit:not(.watching) .icon-add-episode {display: none;} .header { position: fixed; top: 0; height: 68px; z-index: 100; background: var(--background); } .header .header-title {background: #ffd1dc 15px 2px/50px no-repeat url(https://i.postimg.cc/sx2N13vT/logo.png); width: 160px; height: 50px; top: 68px; z-index: 2; border-radius: 10px 0 0; border-bottom: 1px solid #ffd1dc;} .header .header-title:hover {background-color: #FFE1E8;} .header .header-menu.other {width: 160px; top: 118px; left: 0; z-index:2;} [data-owner=""] .header .header-menu .btn-menu, .header .header-menu .header-info {font-size: 0; text-align: left; margin: 0;} .header .header-menu .header-info {margin-top: 50px;} #header-menu-button, .anime .list-menu-float .icon-menu.anime-list, .anime .list-menu-float .icon-menu.anime-list svg, .anime .list-menu-float .icon-menu.anime-list .text, .anime .list-menu-float .icon-menu.anime-list:hover, .manga .list-menu-float .icon-menu.manga-list, .manga .list-menu-float .icon-menu.manga-list svg, .manga .list-menu-float .icon-menu.manga-list .text, .manga .list-menu-float .icon-menu.manga-list:hover {background-color: #fff; color: #FFC4D2 !important; fill: #FFC4D2!important;} #header-menu-button:before {content: ''; display: inline-block; width: 13px; height: 12px; margin: 0 10px 0 20px;} .anime #header-menu-button:before {background: left/cover url(https://i.imgur.com/UmR9p7z.png);} .manga #header-menu-button:before {background: left/cover url(https://i.imgur.com/VSnOz4j.png);} .header a, .header .header-menu .list-menu .icon-menu {display: block; width: 160px; height: 50px; transition: none;} .header .header-menu .list-menu {top: 100px; left: 0; background: none; display: block!important; border: 0; box-shadow: none;} .header .header-menu .list-menu .icon-menu .text {left: 48px; top: 0; font-size: 11px; color: #fff;} .header-info [href*=shared]:before {font: 14px FontAwesome; content: '\f0ec'; padding: 0 11px 0 20px;} .fa.fa-history {padding: 0 6px 0 21px; font-size: 16px; color: #fff;} .header-info [href*=login] {border-top: 1px solid #ffd1dc;} .header-info [href*=login]:before {font: 17px FontAwesome; content: '\f090'; padding: 0 12px 0 20px;} .header-info [href*=register]:before {font: 14px FontAwesome; content: '\f234';padding: 0 12px 0 20px;} .header-info [href*=register]:after {content: 'Register'; font-size: 11px; letter-spacing: 2px;} .header a, .header a.username:after, .list-menu-float .icon-menu.profile:after { content: 'Profile'; font: bold 11px Source Sans Pro; color: #fff!important; line-height: 50px; letter-spacing: 2px;} .header a:not(.header-title):hover, .header a:not(.header-title):hover::before, .header a:not(.header-title):hover::after, .header .header-menu .list-menu .icon-menu:hover, .list-menu-float .icon-menu.profile:hover { background: #FFE1E8; color: white !important; text-decoration: none;} .header a.username, .header-info [href*=register], .list-menu-float .icon-menu.setting .text .link-style-setting {font-size: 0; letter-spacing: 0;} .header a.username:before {content: '\f007'; font: 15px FontAwesome; padding: 0 15px 0 20px;} .header a.username:hover:after, .header .header-menu .list-menu .icon-menu:hover svg.icon, .header .header-menu .list-menu .icon-menu:hover .text, .list-menu-float .icon-menu.setting .text .link-style-setting:hover:before {fill: #fff; color: #fff;} .header .header-menu .list-menu .icon-menu svg.icon, .list-menu-float .icon-menu svg.icon { width: 15px; fill: #fff; top: 15px!important; left: 20px!important;} .list-menu-float { position: fixed; top: 120px; left: calc(50% - 529px); width: 160px; border: 0; z-index: 80; } .list-menu-float .icon-menu {background: #ffd1dc; width: 100%; transition: none;} .list-menu-float .icon-menu.profile {background-image: none!important; width: 110px; padding-left: 50px; text-align: left;} .list-menu-float .icon-menu.profile:before {content: '\f007'; font: 15px FontAwesome; color: #fff; position: absolute; top: 17px; left: 22px;} .list-menu-float .icon-menu .text {font: bold 11px Source Sans Pro; color: #fff; letter-spacing: 2px; width: auto; top: 18px; opacity: 1; transition: none;} .list-menu-float .icon-menu.setting .text {left: 0; width: 100%; height: auto; text-align: left; opacity: 1;} .list-menu-float .icon-menu.setting .text .link-list-setting, .list-menu-float .icon-menu.setting .text .link-style-setting, .list-menu-float .icon-menu.setting:hover .text, .list-menu-float .icon-menu.setting:hover .text .link-list-setting, .list-menu-float .icon-menu.setting:hover .text .link-style-setting { background: #ffd1dc; width: 100%; color: #fff; line-height: 50px; border: 0; opacity: 1;} .list-menu-float .icon-menu:not(.profile):hover, .list-menu-float .icon-menu.setting .text .link-list-setting:hover, .list-menu-float .icon-menu.setting .text .link-style-setting:hover { background: #FFE1E8; width: 100%; color: white;} .list-menu-float .icon-menu.profile:hover { background: #FFE1E8; color: white; } .list-menu-float .icon-menu.profile:hover::before, .list-menu-float .icon-menu.profile:hover::after { color: white !important; } .list-menu-float .icon-menu.profile:hover:before, .list-menu-float .icon-menu.setting .text .link-list-setting:hover:before, .list-menu-float .icon-menu.profile:hover:after, .list-menu-float .icon-menu:hover .text {width: auto; color: white;} .list-menu-float .icon-menu.setting .text .link-list-setting {padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-style-setting:after { content:'List style'; font-size: 11px; letter-spacing: 2px; padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-list-setting:before { content: '\f013'; font: 16px FontAwesome; color: #fff; position: absolute; margin:17px 0 0 -29px;} .list-menu-float .icon-menu.setting .text .link-style-setting:before { content: '\f1fc'; font: 14px FontAwesome; color: #fff; position: absolute; margin: 17px 21px;} .list-container { margin-top: -2px; z-index: 70; padding-top: 51px; background: none; border: 0; } [data-owner=""] .list-container {margin-top: -2px;} .list-block, .status-menu-container.fixed + div.list-block {margin: 0; min-height: auto;} .list-unit { width: auto; margin-left: 160px; padding: 10px 30px calc(100vh - 609px); background: none; border-radius: 0 0 10px;} .status-menu-container, .status-menu-container.fixed { position: fixed; top: 68px; left: calc(50% - 369px); width: 898px; height: 50px; border-radius: 0 10px 0 0; border-bottom: #FFE1E8 1px solid; } .status-menu-container .status-menu { height: 100%; margin-left: 0; border-spacing: 36px 0; } .status-menu-container .status-menu .status-button {font: bold 11px Source Sans Pro; letter-spacing: 2px; color: #ffd5df;} .status-menu-container .status-menu .status-button.on {font-size: 12px;color:#ffb3c5!important;} .status-menu-container .status-menu .status-button.all_anime:hover {color:#ffb3c5;} .status-menu-container .status-menu .status-button.watching:hover {color: #ffb3c5;} .status-menu-container .status-menu .status-button.reading:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.completed:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.onhold:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.dropped:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.plantowatch:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.plantoread:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button:after {height: 2px;} .status-menu-container .status-menu .status-button.all_anime:after {background:#ffc4d2;} .status-menu-container .status-menu .status-button.watching:after {background-color: #d0f0c0;} .status-menu-container .status-menu .status-button.reading:after {background-color: #d0f0c0;} .status-menu-container .status-menu .status-button.plantowatch:after {background-color: #e5d4e5;} .status-menu-container .status-menu .status-button.plantoread:after {background-color: #e5d4e5;} .status-menu-container .status-menu .status-button.completed:after {background-color: #cff2ff;} .status-menu-container .status-menu .status-button.onhold:after {background-color: #ffeec3;} .status-menu-container .status-menu .status-button.dropped:after {background-color: #ee9999;} .status-menu-container .search-container #search-box input {font: 11px Source Sans Pro; color: #FFE1E8; letter-spacing: 1px; padding: 0 8px; border-radius: 1px; border: #FFE1E8 1px solid!important; background-color: #fff;} .fa {color: #ffb3c5;} .list-unit .list-status-title {width: 100%; height: 20px; background:none;} .list-unit .list-status-title .stats {height: auto; line-height: 0;} .list-unit .list-status-title .stats a {color: #ffb3c5; margin: 0;} .list-table .list-table-header .header-title .link { font-size: 11px; color: #ffb3c5; text-decoration: none; } .list-table .list-table-header .header-title, .list-table .list-table-header .header-title .link.sort, .list-table .list-table-header .header-title .link.sort:hover {color: #ffb3c5;} .list-table .list-table-header .header-title.status, .list-table .list-table-data .data.status {width: 2px; padding: 0;} .list-table .list-table-data .data.title, .list-table .list-table-data .data.studio {height: 40px; line-height: 1.2em;} .list-table { width: 100%; margin: 0 auto; border-collapse: collapse; border: #FFE1E8 1px solid; } .list-table .list-table-data .data.title .content-status { font-size: 9px; font-style: italic; color: #ffb3c5; } .list-table .list-table-data .data.score, .list-table .list-table-data .data.score a {color: #ffbbcb;} .list-table .list-table-data .data.chapter a {color: #ffbbcb;} .list-table .list-table-data .data.volume a {color: #ffbbcb;} .list-table .list-table-data .data.progress a {color: #ffbbcb;} .list-table-data .data.tags {color: #ffbbcb;} .list-table .list-table-data .data.status.reading, .list-table .list-table-data .data.status.watching { background-color: #d0f0c0; } .list-table .list-table-data .data.status.completed { background-color: #cff2ff; } .list-table .list-table-data .data.status.onhold { background-color: #ffeec3; } .list-table .list-table-data .data.status.dropped { background-color: #ee9999; } .list-table .list-table-data .data.status.plantoread, .list-table .list-table-data .data.status.plantowatch { background-color: #e5d4e5; } .list-table .list-table-header .header-title { background: url(https://i.imgur.com/nYLjlZm.png) no-repeat right 7px / 1px 22px; } .list-table-header{ background-color: #FFF0F3; } .list-table .list-table-data .data { color: #ffbbcb!important; border-bottom: #FFE1E8 1px solid; } .list-table > tbody:nth-of-type(2n+1), .list-table .list-table-header .header-title{ background-color: #FFF0F3 !important; border-bottom: #FFE1E8 1px solid !important; } .list-table .list-table-data .data.title .link {font-size: 11px;} .list-table .list-table-data .data.title .add-edit-more {float: none; display: inline-block; height: 0; font-size: 0; white-space: nowrap; margin-left: 5px; opacity: 0;} .list-table .list-table-data .data.title:hover .add-edit-more {opacity: 1;} .list-table .list-table-data .data.title .content-status {font-size: 9px; font-style: italic;} .add a, .edit a, .list-table .list-table-data .data.tags {font-size: 8px; line-height:1em;} .list-unit .loading-space {margin: 5px;} footer { position: fixed; top: 609px; left: 0; z-index: 100; width: 100%; height: calc(100% - 609px); background: var(--background); } /* Left Render */ footer:before{ left: -.25%; width: 15% !important; background-size: contain !important; background-image: url(https://i.imgur.com/loKL6O2.png); } footer:before{ width: 50%; height: 100%; position: fixed; background-repeat: no-repeat; background-size: 100% !important; background-position:center bottom;} footer::after, footer::before { content: ""; display: block; position: fixed; bottom: 0px; background-size: 100%; pointer-events: none; z-index: 3; } .cover-block::after { display: none !important; } /* Right Render */ footer:after{ right: -.25%; width: 15% !important; background-size: contain !important; background-image: url(https://i.imgur.com/wxbWeBc.png); } footer:after{ width: 50%; height: 100%; position: fixed; background-repeat: no-repeat; background-size: 100% !important; background-position:center bottom;} footer::after, footer::before { content: ""; display: block; position: fixed; bottom: 0px; background-size: 100%; pointer-events: none; z-index: 3; } .cover-block::before { display: none !important; } #footer-block {background: none; padding: 20px;} #copyright {font: 9px Source Sans Pro; color: white; text-shadow: 1px 1px 2px #444; padding-top: 6px;} #copyright:before {content: 'Designed by 5cm.';} Thank you so much for your help. Your png images worked like a charm. I have tried fill in any way I could with #header-menu-button:before, but nothing worked. I was worried that the only solution would be to change the png icons, since svg is beyond my knowledge. |
shortypiNov 2, 2020 7:37 PM
Nov 2, 2020 4:47 AM
#6473
Valerio_Lyndon said: -Zephyr- said: So I'm working on a graphic for my profile (not list layout) and it's gonna be 1 graphic with everything on top of it. On my current profile, I have a list with spoiler buttons for my top 10 favorite anime openings. How, if possible, can I apply such a list on the type of layout I'm working on? Thanks! You can have a spoiler as you do now with graphics inside the spoiler, or you can have it all displayed from the get-go in your graphic (with no spoiler). Unfortunately it's not possible to stylize the spoiler dropdown, if that is what you are asking. Don't mean to be a bother, but I have a few questions on that spoiler button thing. 1. I should cut out a shape for the spoiler button on the graphic just like YouTube players right? 2. If I did do that and put the spoiler button directly in there like that, would it not split the graphic which I clock the spoiler button to reveal that list? In my mind, I would end up with part of my graphic on top, a white background mess when I click the spoiler button, and then the rest of the graphic on the bottom. Thanks for your time :P |
Nov 2, 2020 3:08 PM
#6474
-Zephyr- said: Valerio_Lyndon said: -Zephyr- said: So I'm working on a graphic for my profile (not list layout) and it's gonna be 1 graphic with everything on top of it. On my current profile, I have a list with spoiler buttons for my top 10 favorite anime openings. How, if possible, can I apply such a list on the type of layout I'm working on? Thanks! You can have a spoiler as you do now with graphics inside the spoiler, or you can have it all displayed from the get-go in your graphic (with no spoiler). Unfortunately it's not possible to stylize the spoiler dropdown, if that is what you are asking. Don't mean to be a bother, but I have a few questions on that spoiler button thing. 1. I should cut out a shape for the spoiler button on the graphic just like YouTube players right? 2. If I did do that and put the spoiler button directly in there like that, would it not split the graphic which I clock the spoiler button to reveal that list? In my mind, I would end up with part of my graphic on top, a white background mess when I click the spoiler button, and then the rest of the graphic on the bottom. Thanks for your time :P I don't know how spoilers work when the graphic has a space cut out just for that, tho iirc I don't think it works out. Unfortunately I'm real busy and sick these days and don't have time to test this out by making a graphic around it, slicing it, creating the BBcode, etc- my suggestion would be to test it out and see what happens. If the spoiler button on MAL doesn't fit into your graphic, then you have your answer. But I don't think anyone has put a spoiler button in a graphic because it doesn't work. I don't think you can put images on the sides of it. |
Shishio-kunNov 2, 2020 5:21 PM
Nov 2, 2020 3:09 PM
#6475
shortypi said: Shishio-kun said: shortypi said: Hello, I'm having trouble customizing this modern list layout. I'm trying to change the color of the anime and manga list icons. I have no issues with the custom color while logged in. Whenever I am logged out, the icons stay their original black color. What can I do to have the custom color show up to other users? Logged in example: Logged out example: What's your CSS code? Maybe .anime #header-menu-button:before and .manga #header-menu-button:before have to have an SVG extension icon for the CSS fill codes to work on them? Could you use pink png icons for those codes instead? /* "Dashboard" * List design by 5cm * Modified by Valerio Lyndon * Original date: 2020-JUL-28 * Revision date: 2020-AUG-09 */ /* Changelog: - Fixed entries after 300 not loading when layout viewed on large screens. - Unified menu button appearance on hover. - Fixed white pixels above MAL logo. */ @\import "https://fonts.googleapis.com/css?family=Source+Sans+Pro"; :root { --background: url(https://i.imgur.com/aRnArqY.png) fixed center/cover } body { background: var(--background) !important; width: 1058px; font: 11px Source Sans Pro; letter-spacing: 1px; text-transform: uppercase; padding: 70px 0 0; margin: auto; } body::before, body::after { content: ""; position: fixed; top: 68px; left: calc(50% - 529px); width: 1058px; height: 541px; border-radius: 10px; pointer-events: none; } body::before { z-index: 60; background: linear-gradient(to right, #ffd1dc 160px, #fff 160px); } body::after { z-index: 110; box-shadow: 0 8px 20px rgba(255,225,232); } a {color: #ffbbcb;} #header-menu-button .fa, [data-owner=""] .list-menu-float, .cover-block, .list-menu-float .icon-menu.export, .list-menu-float .icon-menu.setting svg.icon-setting, .list-unit .list-status-title .text, #show-stats-button, .list-unit:not(.all_anime) .status, .icon-watch.ml4,[data-owner=""] .add-edit-more span, .more, .list-table .list-table-data .tags .edit, .list-unit:not(.watching) .icon-add-episode {display: none;} .header { position: fixed; top: 0; height: 68px; z-index: 100; background: var(--background); } .header .header-title {background: #ffd1dc 15px 2px/50px no-repeat url(https://i.postimg.cc/sx2N13vT/logo.png); width: 160px; height: 50px; top: 68px; z-index: 2; border-radius: 10px 0 0; border-bottom: 1px solid #ffd1dc;} .header .header-title:hover {background-color: #FFE1E8;} .header .header-menu.other {width: 160px; top: 118px; left: 0; z-index:2;} [data-owner=""] .header .header-menu .btn-menu, .header .header-menu .header-info {font-size: 0; text-align: left; margin: 0;} .header .header-menu .header-info {margin-top: 50px;} #header-menu-button, .anime .list-menu-float .icon-menu.anime-list, .anime .list-menu-float .icon-menu.anime-list svg, .anime .list-menu-float .icon-menu.anime-list .text, .anime .list-menu-float .icon-menu.anime-list:hover, .manga .list-menu-float .icon-menu.manga-list, .manga .list-menu-float .icon-menu.manga-list svg, .manga .list-menu-float .icon-menu.manga-list .text, .manga .list-menu-float .icon-menu.manga-list:hover {background-color: #fff; color: #FFC4D2 !important; fill: #FFC4D2!important;} #header-menu-button:before {content: ''; display: inline-block; width: 13px; height: 12px; margin: 0 10px 0 20px;} .anime #header-menu-button:before {background: left/cover url(https://i.imgur.com/UmR9p7z.png);} .manga #header-menu-button:before {background: left/cover url(https://i.imgur.com/VSnOz4j.png);} .header a, .header .header-menu .list-menu .icon-menu {display: block; width: 160px; height: 50px; transition: none;} .header .header-menu .list-menu {top: 100px; left: 0; background: none; display: block!important; border: 0; box-shadow: none;} .header .header-menu .list-menu .icon-menu .text {left: 48px; top: 0; font-size: 11px; color: #fff;} .header-info [href*=shared]:before {font: 14px FontAwesome; content: '\f0ec'; padding: 0 11px 0 20px;} .fa.fa-history {padding: 0 6px 0 21px; font-size: 16px; color: #fff;} .header-info [href*=login] {border-top: 1px solid #ffd1dc;} .header-info [href*=login]:before {font: 17px FontAwesome; content: '\f090'; padding: 0 12px 0 20px;} .header-info [href*=register]:before {font: 14px FontAwesome; content: '\f234';padding: 0 12px 0 20px;} .header-info [href*=register]:after {content: 'Register'; font-size: 11px; letter-spacing: 2px;} .header a, .header a.username:after, .list-menu-float .icon-menu.profile:after { content: 'Profile'; font: bold 11px Source Sans Pro; color: #fff!important; line-height: 50px; letter-spacing: 2px;} .header a:not(.header-title):hover, .header a:not(.header-title):hover::before, .header a:not(.header-title):hover::after, .header .header-menu .list-menu .icon-menu:hover, .list-menu-float .icon-menu.profile:hover { background: #FFE1E8; color: white !important; text-decoration: none;} .header a.username, .header-info [href*=register], .list-menu-float .icon-menu.setting .text .link-style-setting {font-size: 0; letter-spacing: 0;} .header a.username:before {content: '\f007'; font: 15px FontAwesome; padding: 0 15px 0 20px;} .header a.username:hover:after, .header .header-menu .list-menu .icon-menu:hover svg.icon, .header .header-menu .list-menu .icon-menu:hover .text, .list-menu-float .icon-menu.setting .text .link-style-setting:hover:before {fill: #fff; color: #fff;} .header .header-menu .list-menu .icon-menu svg.icon, .list-menu-float .icon-menu svg.icon { width: 15px; fill: #fff; top: 15px!important; left: 20px!important;} .list-menu-float { position: fixed; top: 120px; left: calc(50% - 529px); width: 160px; border: 0; z-index: 80; } .list-menu-float .icon-menu {background: #ffd1dc; width: 100%; transition: none;} .list-menu-float .icon-menu.profile {background-image: none!important; width: 110px; padding-left: 50px; text-align: left;} .list-menu-float .icon-menu.profile:before {content: '\f007'; font: 15px FontAwesome; color: #fff; position: absolute; top: 17px; left: 22px;} .list-menu-float .icon-menu .text {font: bold 11px Source Sans Pro; color: #fff; letter-spacing: 2px; width: auto; top: 18px; opacity: 1; transition: none;} .list-menu-float .icon-menu.setting .text {left: 0; width: 100%; height: auto; text-align: left; opacity: 1;} .list-menu-float .icon-menu.setting .text .link-list-setting, .list-menu-float .icon-menu.setting .text .link-style-setting, .list-menu-float .icon-menu.setting:hover .text, .list-menu-float .icon-menu.setting:hover .text .link-list-setting, .list-menu-float .icon-menu.setting:hover .text .link-style-setting { background: #ffd1dc; width: 100%; color: #fff; line-height: 50px; border: 0; opacity: 1;} .list-menu-float .icon-menu:not(.profile):hover, .list-menu-float .icon-menu.setting .text .link-list-setting:hover, .list-menu-float .icon-menu.setting .text .link-style-setting:hover { background: #FFE1E8; width: 100%; color: white;} .list-menu-float .icon-menu.profile:hover { background: #FFE1E8; color: white; } .list-menu-float .icon-menu.profile:hover::before, .list-menu-float .icon-menu.profile:hover::after { color: white !important; } .list-menu-float .icon-menu.profile:hover:before, .list-menu-float .icon-menu.setting .text .link-list-setting:hover:before, .list-menu-float .icon-menu.profile:hover:after, .list-menu-float .icon-menu:hover .text {width: auto; color: white;} .list-menu-float .icon-menu.setting .text .link-list-setting {padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-style-setting:after { content:'List style'; font-size: 11px; letter-spacing: 2px; padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-list-setting:before { content: '\f013'; font: 16px FontAwesome; color: #fff; position: absolute; margin:17px 0 0 -29px;} .list-menu-float .icon-menu.setting .text .link-style-setting:before { content: '\f1fc'; font: 14px FontAwesome; color: #fff; position: absolute; margin: 17px 21px;} .list-container { margin-top: -2px; z-index: 70; padding-top: 51px; background: none; border: 0; } [data-owner=""] .list-container {margin-top: -2px;} .list-block, .status-menu-container.fixed + div.list-block {margin: 0; min-height: auto;} .list-unit { width: auto; margin-left: 160px; padding: 10px 30px calc(100vh - 609px); background: none; border-radius: 0 0 10px;} .status-menu-container, .status-menu-container.fixed { position: fixed; top: 68px; left: calc(50% - 369px); width: 898px; height: 50px; border-radius: 0 10px 0 0; border-bottom: #FFE1E8 1px solid; } .status-menu-container .status-menu { height: 100%; margin-left: 0; border-spacing: 36px 0; } .status-menu-container .status-menu .status-button {font: bold 11px Source Sans Pro; letter-spacing: 2px; color: #ffd5df;} .status-menu-container .status-menu .status-button.on {font-size: 12px;color:#ffb3c5!important;} .status-menu-container .status-menu .status-button.all_anime:hover {color:#ffb3c5;} .status-menu-container .status-menu .status-button.watching:hover {color: #ffb3c5;} .status-menu-container .status-menu .status-button.reading:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.completed:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.onhold:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.dropped:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.plantowatch:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button.plantoread:hover {color: #ffb3c5!important;} .status-menu-container .status-menu .status-button:after {height: 2px;} .status-menu-container .status-menu .status-button.all_anime:after {background:#ffc4d2;} .status-menu-container .status-menu .status-button.watching:after {background-color: #d0f0c0;} .status-menu-container .status-menu .status-button.reading:after {background-color: #d0f0c0;} .status-menu-container .status-menu .status-button.plantowatch:after {background-color: #e5d4e5;} .status-menu-container .status-menu .status-button.plantoread:after {background-color: #e5d4e5;} .status-menu-container .status-menu .status-button.completed:after {background-color: #cff2ff;} .status-menu-container .status-menu .status-button.onhold:after {background-color: #ffeec3;} .status-menu-container .status-menu .status-button.dropped:after {background-color: #ee9999;} .status-menu-container .search-container #search-box input {font: 11px Source Sans Pro; color: #FFE1E8; letter-spacing: 1px; padding: 0 8px; border-radius: 1px; border: #FFE1E8 1px solid!important; background-color: #fff;} .fa {color: #ffb3c5;} .list-unit .list-status-title {width: 100%; height: 20px; background:none;} .list-unit .list-status-title .stats {height: auto; line-height: 0;} .list-unit .list-status-title .stats a {color: #ffb3c5; margin: 0;} .list-table .list-table-header .header-title .link { font-size: 11px; color: #ffb3c5; text-decoration: none; } .list-table .list-table-header .header-title, .list-table .list-table-header .header-title .link.sort, .list-table .list-table-header .header-title .link.sort:hover {color: #ffb3c5;} .list-table .list-table-header .header-title.status, .list-table .list-table-data .data.status {width: 2px; padding: 0;} .list-table .list-table-data .data.title, .list-table .list-table-data .data.studio {height: 40px; line-height: 1.2em;} .list-table { width: 100%; margin: 0 auto; border-collapse: collapse; border: #FFE1E8 1px solid; } .list-table .list-table-data .data.title .content-status { font-size: 9px; font-style: italic; color: #ffb3c5; } .list-table .list-table-data .data.score, .list-table .list-table-data .data.score a {color: #ffbbcb;} .list-table .list-table-data .data.chapter a {color: #ffbbcb;} .list-table .list-table-data .data.volume a {color: #ffbbcb;} .list-table .list-table-data .data.progress a {color: #ffbbcb;} .list-table-data .data.tags {color: #ffbbcb;} .list-table .list-table-data .data.status.reading, .list-table .list-table-data .data.status.watching { background-color: #d0f0c0; } .list-table .list-table-data .data.status.completed { background-color: #cff2ff; } .list-table .list-table-data .data.status.onhold { background-color: #ffeec3; } .list-table .list-table-data .data.status.dropped { background-color: #ee9999; } .list-table .list-table-data .data.status.plantoread, .list-table .list-table-data .data.status.plantowatch { background-color: #e5d4e5; } .list-table .list-table-header .header-title { background: url(https://i.imgur.com/nYLjlZm.png) no-repeat right 7px / 1px 22px; } .list-table-header{ background-color: #FFF0F3; } .list-table .list-table-data .data { color: #ffbbcb!important; border-bottom: #FFE1E8 1px solid; } .list-table > tbody:nth-of-type(2n+1), .list-table .list-table-header .header-title{ background-color: #FFF0F3 !important; border-bottom: #FFE1E8 1px solid !important; } .list-table .list-table-data .data.title .link {font-size: 11px;} .list-table .list-table-data .data.title .add-edit-more {float: none; display: inline-block; height: 0; font-size: 0; white-space: nowrap; margin-left: 5px; opacity: 0;} .list-table .list-table-data .data.title:hover .add-edit-more {opacity: 1;} .list-table .list-table-data .data.title .content-status {font-size: 9px; font-style: italic;} .add a, .edit a, .list-table .list-table-data .data.tags {font-size: 8px; line-height:1em;} .list-unit .loading-space {margin: 5px;} footer { position: fixed; top: 609px; left: 0; z-index: 100; width: 100%; height: calc(100% - 609px); background: var(--background); } /* Left Render */ footer:before{ left: -.25%; width: 15% !important; background-size: contain !important; background-image: url(https://i.imgur.com/loKL6O2.png); } footer:before{ width: 50%; height: 100%; position: fixed; background-repeat: no-repeat; background-size: 100% !important; background-position:center bottom;} footer::after, footer::before { content: ""; display: block; position: fixed; bottom: 0px; background-size: 100%; pointer-events: none; z-index: 3; } .cover-block::after { display: none !important; } /* Right Render */ footer:after{ right: -.25%; width: 15% !important; background-size: contain !important; background-image: url(https://i.imgur.com/wxbWeBc.png); } footer:after{ width: 50%; height: 100%; position: fixed; background-repeat: no-repeat; background-size: 100% !important; background-position:center bottom;} footer::after, footer::before { content: ""; display: block; position: fixed; bottom: 0px; background-size: 100%; pointer-events: none; z-index: 3; } .cover-block::before { display: none !important; } #footer-block {background: none; padding: 20px;} #copyright {font: 9px Source Sans Pro; color: white; text-shadow: 1px 1px 2px #444; padding-top: 6px;} #copyright:before {content: 'Designed by 5cm.';} Thank you so much for your help. Your png images worked like a charm. I have tried fill in any way I could with #header-menu-button:before, but nothing worked. I was worried that the only solution would be to change the png icons, since svg is beyond my knowledge. Awesome :D |
Nov 3, 2020 6:23 AM
#6476
Shishio-kun said: -Zephyr- said: Valerio_Lyndon said: -Zephyr- said: So I'm working on a graphic for my profile (not list layout) and it's gonna be 1 graphic with everything on top of it. On my current profile, I have a list with spoiler buttons for my top 10 favorite anime openings. How, if possible, can I apply such a list on the type of layout I'm working on? Thanks! You can have a spoiler as you do now with graphics inside the spoiler, or you can have it all displayed from the get-go in your graphic (with no spoiler). Unfortunately it's not possible to stylize the spoiler dropdown, if that is what you are asking. Don't mean to be a bother, but I have a few questions on that spoiler button thing. 1. I should cut out a shape for the spoiler button on the graphic just like YouTube players right? 2. If I did do that and put the spoiler button directly in there like that, would it not split the graphic which I clock the spoiler button to reveal that list? In my mind, I would end up with part of my graphic on top, a white background mess when I click the spoiler button, and then the rest of the graphic on the bottom. Thanks for your time :P I don't know how spoilers work when the graphic has a space cut out just for that, tho iirc I don't think it works out. Unfortunately I'm real busy and sick these days and don't have time to test this out by making a graphic around it, slicing it, creating the BBcode, etc- my suggestion would be to test it out and see what happens. If the spoiler button on MAL doesn't fit into your graphic, then you have your answer. But I don't think anyone has put a spoiler button in a graphic because it doesn't work. I don't think you can put images on the sides of it. Yeah, you're probably right. I guess I'll have to make a super tall graphic to fit my top 10 openings list in the profile lol. |
Nov 7, 2020 4:02 PM
#6477
hey I need help for a few things I want my modern list (I got it from he advanced modern premade section) to be dark theme and translucent, but when I add the dark-transparent code at the end of the code fro the modern style, it changes the font to serif and keeps the text black. Also, I'd like to change the text (mainly for Tags) to be sentence-case. Any help would be appreciated, thanks |
Nov 7, 2020 8:01 PM
#6478
BlossomBurst said: hey I need help for a few things I want my modern list (I got it from he advanced modern premade section) to be dark theme and translucent, but when I add the dark-transparent code at the end of the code fro the modern style, it changes the font to serif and keeps the text black. Also, I'd like to change the text (mainly for Tags) to be sentence-case. Any help would be appreciated, thanks This at the bottom should fix the tags .data.tags span, .data.tags span a, .list-table .list-table-data .data.tags, .list-table .list-table-data .data.tags a{ text-transform: none !important; } And for the first thing, you basically want this whole table to be dark and translucent, but with white text? |
Nov 7, 2020 8:59 PM
#6479
hey guys, i am doing some about me profiles (i did my own that i am using right now, its actualy my first one) and i really love to do this actually ! I saw a lot of videos about this but is there any other videos more depth into content like making a about me profile with GIFS or better costumization ? i have GIMP but i think photopea is a little better. I do not have the money to pay for month to have photoshop. If someone have tips or some nice videos feel free to talk to me ! have a great day |
Nov 8, 2020 1:08 AM
#6480
SirSantos06 said: hey guys, i am doing some about me profiles (i did my own that i am using right now, its actualy my first one) and i really love to do this actually ! I saw a lot of videos about this but is there any other videos more depth into content like making a about me profile with GIFS or better costumization ? i have GIMP but i think photopea is a little better. I do not have the money to pay for month to have photoshop. If someone have tips or some nice videos feel free to talk to me ! have a great day Is there a profile About Me with an example of what you're trying to do? |
Nov 8, 2020 5:33 AM
#6481
Shishio-kun said: SirSantos06 said: hey guys, i am doing some about me profiles (i did my own that i am using right now, its actualy my first one) and i really love to do this actually ! I saw a lot of videos about this but is there any other videos more depth into content like making a about me profile with GIFS or better costumization ? i have GIMP but i think photopea is a little better. I do not have the money to pay for month to have photoshop. If someone have tips or some nice videos feel free to talk to me ! have a great day Is there a profile About Me with an example of what you're trying to do? i really like this one https://myanimelist.net/profile/AlexandreEsteves even if there may be some personal drawings on it, i thinks its looks pretty cool, and i really want to know how to add those GIFS on the collage, and it looks soo smooth. I am really interested to do something like this even if i am years away of doing something so good and not having a proper program is harder but i dont really mind ! |
Nov 8, 2020 1:46 PM
#6482
SirSantos06 said: Shishio-kun said: SirSantos06 said: hey guys, i am doing some about me profiles (i did my own that i am using right now, its actualy my first one) and i really love to do this actually ! I saw a lot of videos about this but is there any other videos more depth into content like making a about me profile with GIFS or better costumization ? i have GIMP but i think photopea is a little better. I do not have the money to pay for month to have photoshop. If someone have tips or some nice videos feel free to talk to me ! have a great day Is there a profile About Me with an example of what you're trying to do? i really like this one https://myanimelist.net/profile/AlexandreEsteves even if there may be some personal drawings on it, i thinks its looks pretty cool, and i really want to know how to add those GIFS on the collage, and it looks soo smooth. I am really interested to do something like this even if i am years away of doing something so good and not having a proper program is harder but i dont really mind ! This person probably made the graphic first and second they put the GIFs behind the graphic where there were holes in it to see through, or they added the GIF on top of the graphic and added more graphics around and on top of the GIF. Then they split the graphic up. I have a video on making an About Me on Photoshop (this would also work on Photopea), and this is the part where I add GIFs to it. I go over splitting the graphic up too which you'll need to do if you want to add it to MAL https://youtu.be/P6ij9yWjlVQ?t=1855 Same for GIMP including adding a graphic and splitting it up https://youtu.be/7uCkmwi6RYc?t=1755 You should be able to make an About Me and add GIFs you want to it after watching that. If you can't, then just post how far you got and what step you got stuck on. If you want to make a GIF it's best to use a recording ap or JASC Animation Shop, it's too troublesome anywhere else. I have a video on making GIFs too. https://youtu.be/4C2sDMqg8qM All the playlists are here too https://www.youtube.com/channel/UC4wMqp-gSlzfCiyis0PKlYQ You can also add AlexandreEsteves if they'll let you look at their PSD (Photoshop file) so you can learn from it. You would need a little Photoshop experience first tho to understand what to look at in a PSD. |
Shishio-kunNov 8, 2020 1:54 PM
Nov 8, 2020 2:28 PM
#6483
Shishio-kun said: SirSantos06 said: Shishio-kun said: SirSantos06 said: hey guys, i am doing some about me profiles (i did my own that i am using right now, its actualy my first one) and i really love to do this actually ! I saw a lot of videos about this but is there any other videos more depth into content like making a about me profile with GIFS or better costumization ? i have GIMP but i think photopea is a little better. I do not have the money to pay for month to have photoshop. If someone have tips or some nice videos feel free to talk to me ! have a great day Is there a profile About Me with an example of what you're trying to do? i really like this one https://myanimelist.net/profile/AlexandreEsteves even if there may be some personal drawings on it, i thinks its looks pretty cool, and i really want to know how to add those GIFS on the collage, and it looks soo smooth. I am really interested to do something like this even if i am years away of doing something so good and not having a proper program is harder but i dont really mind ! This person probably made the graphic first and second they put the GIFs behind the graphic where there were holes in it to see through, or they added the GIF on top of the graphic and added more graphics around and on top of the GIF. Then they split the graphic up. I have a video on making an About Me on Photoshop (this would also work on Photopea), and this is the part where I add GIFs to it. I go over splitting the graphic up too which you'll need to do if you want to add it to MAL https://youtu.be/P6ij9yWjlVQ?t=1855 Same for GIMP including adding a graphic and splitting it up https://youtu.be/7uCkmwi6RYc?t=1755 You should be able to make an About Me and add GIFs you want to it after watching that. If you can't, then just post how far you got and what step you got stuck on. If you want to make a GIF it's best to use a recording ap or JASC Animation Shop, it's too troublesome anywhere else. I have a video on making GIFs too. https://youtu.be/4C2sDMqg8qM All the playlists are here too https://www.youtube.com/channel/UC4wMqp-gSlzfCiyis0PKlYQ You can also add AlexandreEsteves if they'll let you look at their PSD (Photoshop file) so you can learn from it. You would need a little Photoshop experience first tho to understand what to look at in a PSD. Wow this really helped me a lot. Thanks for all the help. I probably will try to ask him for the photoshop file and try to learn from that, i have little experience but i know someone who might explain it to me more in depth. Thanks !! |
Nov 9, 2020 1:33 AM
#6484
Hello, so I'm using the grid style 2 code from this post. I absolutely love the format and layout of the six buttons and six banners, but I prefer to go back to the basic listing anime layout since the anime images are smaller and the tags are more easily visible. Is there a way to change that part back? I suck at explaining things, so maybe this image would help explain what I'm trying to ask for: Ok nvm, it's been a while but I figured it out myself. |
XiaoDec 7, 2020 1:34 PM
"As promised, all that you seek, all that we desire, is prepared up there. On top of the Tower." |
Nov 9, 2020 8:10 AM
#6485
Shishio-kun said: . And for the first thing, you basically want this whole table to be dark and translucent, but with white text? Yes, exactly. Thanks a bunch, it worked perfectly. |
BlossomBurstNov 9, 2020 8:15 AM
Nov 10, 2020 5:05 PM
#6486
AllIsManga said: Hello, so I'm using the grid style 2 code from this post. I absolutely love the format and layout of the six buttons and six banners, but I prefer to go back to the basic listing anime layout since the anime images are smaller and the tags are more easily visible. Is there a way to change that part back? I suck at explaining things, so maybe this image would help explain what I'm trying to ask for: I'm thinking that would require manually removing the codes that convert the table into the grid. The problem is there are thousands of lines of code in that layout so removing them manually to get the layout just right would be very time-consuming. Unless someone wants to manually do that, I think it'd be way easier to add the desired features of the grid style layout to a default list layout. That way you get the table you want with the features of the grid layout you're using now. What features do you want to carry over from grid style to a default layout: 6 banners, 6 buttons, side render, anything else? |
Nov 10, 2020 5:55 PM
#6487
BlossomBurst said: Shishio-kun said: . And for the first thing, you basically want this whole table to be dark and translucent, but with white text? Yes, exactly. Thanks a bunch, it worked perfectly. OK, it should look like this, you can adjust the font colors by finding lines of code that say color: and after that is the color like white, grey, black, or a number. You can ask if you're trying to change a particular button color or not but they should all be in the code. /* "Dashboard" * List design by 5cm * Modified by Valerio Lyndon * Original date: 2020-JUL-28 * Revision date: 2020-AUG-09 */ /* Changelog: - Fixed entries after 300 not loading when layout viewed on large screens. - Unified menu button appearance on hover. - Fixed white pixels above MAL logo. */ @\import "https://fonts.googleapis.com/css?family=Source+Sans+Pro"; :root { --background: url(https://image.myanimelist.net/ui/Ov3S4JIZkeatsSFmyuzDTmfoUMXFV2CvJ80hYf7klGY2nDn8m6XxrUfl9DLF1QRz_I4BNVldFJoJytwlXPupyUWqZK1_JDdV2Y0ZDOoaXfVUSeLsGeGE7o8X6KhZ3iP9aAwFNpqSNqD0Z2G37usdGt13HM-p2PDQXTGN1frJSH2P4ICghvIsuI4iiM5Ad8XB7hUHJJuwk1EFeDXF5_MOxk7MxpHDcowSH_oVEAt-eHpFtb8L636lm2sLQ1qWXcDEoluM6mmaPB8I8_pFM5jnI_rWzAyboZgDGbfAjoVTRCap2cSJijptZDjuiWQd1p86-got9024ffWM0D8L57b4I4we2alI3JTq2zmuwV6n1I2s0lTikKD3QtMwn6V09d-mOZuob6cCpQ49uesmU_m8XQtlKTRuWneK2qETu7yEYlGykT2BxdZnmll8APGk_8Tf1ZIqq9G54JZ6OH8CSYwrMg), fixed center/cover url(https://image.myanimelist.net/ui/fkLITaJTefafxFKPGRzngptT3fPuBZGi-pCFvR6Hv0bP9iUgk11TEXbxH7SeaBxE) } body { background: var(--background) !important; width: 1058px; font: 11px Source Sans Pro; letter-spacing: 1px; text-transform: uppercase; padding: 70px 0 0; margin: auto; color: white; } body::before, body::after { content: ""; position: fixed; top: 68px; left: calc(50% - 529px); width: 1058px; height: 541px; border-radius: 10px; pointer-events: none; } body::before { z-index: 60; background: rgba(5,5,5,.5); } body::after { z-index: 110; box-shadow: 0 8px 20px rgba(0,0,0,.6); } a {color: white;} #header-menu-button .fa, [data-owner=""] .list-menu-float, .cover-block, .list-menu-float .icon-menu.export, .list-menu-float .icon-menu.setting svg.icon-setting, .list-unit .list-status-title .text, #show-stats-button, .list-unit:not(.all_anime) .status, .icon-watch.ml4,[data-owner=""] .add-edit-more span, .more, .list-table .list-table-data .tags .edit, .list-unit:not(.watching) .icon-add-episode {display: none;} .header { position: fixed; top: 0; height: 68px; z-index: 100; background: var(--background); } .header .header-title {background: #333 15px 2px/50px no-repeat url(https://image.myanimelist.net/ui/fkLITaJTefafxFKPGRzngvQqHPDcc6jatqmY_RHEj9-Z8-4goIa5WgKMI8CQvYLg); width: 160px; height: 50px; top: 68px; z-index: 2; border-radius: 10px 0 0; border-bottom: 1px solid #555;} .header .header-title:hover {background-color: #222;} .header .header-menu.other {width: 160px; top: 118px; left: 0; z-index:2;} [data-owner=""] .header .header-menu .btn-menu, .header .header-menu .header-info {font-size: 0; text-align: left; margin: 0;} .header .header-menu .header-info {margin-top: 50px;} #header-menu-button, .anime .list-menu-float .icon-menu.anime-list, .anime .list-menu-float .icon-menu.anime-list svg, .anime .list-menu-float .icon-menu.anime-list .text, .anime .list-menu-float .icon-menu.anime-list:hover, .manga .list-menu-float .icon-menu.manga-list, .manga .list-menu-float .icon-menu.manga-list svg, .manga .list-menu-float .icon-menu.manga-list .text, .manga .list-menu-float .icon-menu.manga-list:hover { background-color: transparent; color: #333 !important; fill: #333;} #header-menu-button:before {content: ''; display: inline-block; width: 13px; height: 12px; margin: 0 10px 0 20px;} .anime #header-menu-button:before {background: left/cover url(https://image.myanimelist.net/ui/psYiTUtmhCM147Lw1c2IfEdpMGgqTXOAV7TUBQQzrxk9HddL_-Sx7EGuKbYvYuAf);} .manga #header-menu-button:before {background: left/cover url(https://image.myanimelist.net/ui/psYiTUtmhCM147Lw1c2IfEH4MpovaYtG8IwnuF48Imc3YkKXdBZRhkHFhaL-Jc1D);} .header a, .header .header-menu .list-menu .icon-menu {display: block; width: 160px; height: 50px; transition: none;} .header .header-menu .list-menu {top: 100px; left: 0; background: none; display: block!important; border: 0; box-shadow: none;} .header .header-menu .list-menu .icon-menu .text {left: 48px; top: 0; font-size: 11px; color: #999;} .header-info [href*=shared]:before {font: 14px FontAwesome; content: '\f0ec'; padding: 0 11px 0 20px;} .fa.fa-history {padding: 0 6px 0 21px; font-size: 16px;} .header-info [href*=login] {border-top: 1px solid #555;} .header-info [href*=login]:before {font: 17px FontAwesome; content: '\f090'; padding: 0 12px 0 20px;} .header-info [href*=register]:before {font: 14px FontAwesome; content: '\f234';padding: 0 12px 0 20px;} .header-info [href*=register]:after {content: 'Register'; font-size: 11px; letter-spacing: 2px;} .header a, .header a.username:after, .list-menu-float .icon-menu.profile:after { content: 'Profile'; font: bold 11px Source Sans Pro; color: #999!important; line-height: 50px; letter-spacing: 2px;} .header a:not(.header-title):hover, .header a:not(.header-title):hover::before, .header a:not(.header-title):hover::after, .header .header-menu .list-menu .icon-menu:hover, .list-menu-float .icon-menu.profile:hover { background: #222; color: white !important; text-decoration: none;} .header a.username, .header-info [href*=register], .list-menu-float .icon-menu.setting .text .link-style-setting { font-size: 0; letter-spacing: 0;} .header a.username:before {content: '\f007'; font: 15px FontAwesome; padding: 0 15px 0 20px;} .header a.username:hover:after, .header .header-menu .list-menu .icon-menu:hover svg.icon, .header .header-menu .list-menu .icon-menu:hover .text, .list-menu-float .icon-menu.setting .text .link-style-setting:hover:before { fill: white; color: white;} .header .header-menu .list-menu .icon-menu svg.icon, .list-menu-float .icon-menu svg.icon { width: 15px; fill: #999; top: 15px!important; left: 20px!important;} .list-menu-float { position: fixed; top: 120px; left: calc(50% - 529px); width: 160px; border: 0; z-index: 80; } .list-menu-float .icon-menu {background: #333; width: 100%; transition: none;} .list-menu-float .icon-menu.profile {background-image: none!important; width: 110px; padding-left: 50px; text-align: left;} .list-menu-float .icon-menu.profile:before {content: '\f007'; font: 15px FontAwesome; color: #999; position: absolute; top: 17px; left: 22px;} .list-menu-float .icon-menu .text {font: bold 11px Source Sans Pro; color: #999; letter-spacing: 2px; width: auto; top: 18px; opacity: 1; transition: none;} .list-menu-float .icon-menu.setting .text {left: 0; width: 100%; height: auto; text-align: left; opacity: 1;} .list-menu-float .icon-menu.setting .text .link-list-setting, .list-menu-float .icon-menu.setting .text .link-style-setting, .list-menu-float .icon-menu.setting:hover .text, .list-menu-float .icon-menu.setting:hover .text .link-list-setting, .list-menu-float .icon-menu.setting:hover .text .link-style-setting { background: #333; width: 100%; color: #999; line-height: 50px; border: 0; opacity: 1;} .list-menu-float .icon-menu:not(.profile):hover, .list-menu-float .icon-menu.setting .text .link-list-setting:hover, .list-menu-float .icon-menu.setting .text .link-style-setting:hover { background: #222; width: 100%; color: white;} .list-menu-float .icon-menu.profile:hover { background: #222; color: white; } .list-menu-float .icon-menu.profile:hover::before, .list-menu-float .icon-menu.profile:hover::after { color: white !important; } .list-menu-float .icon-menu.profile:hover:before, .list-menu-float .icon-menu.setting .text .link-list-setting:hover:before, .list-menu-float .icon-menu.profile:hover:after, .list-menu-float .icon-menu:hover .text {width: auto; color: white;} .list-menu-float .icon-menu.setting .text .link-list-setting {padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-style-setting:after { content:'List style'; font-size: 11px; letter-spacing: 2px; padding-left: 50px;} .list-menu-float .icon-menu.setting .text .link-list-setting:before { content: '\f013'; font: 16px FontAwesome; color: #999; position: absolute; margin:17px 0 0 -29px;} .list-menu-float .icon-menu.setting .text .link-style-setting:before { content: '\f1fc'; font: 14px FontAwesome; color: #999; position: absolute; margin: 17px 21px;} .list-container { margin-top: -2px; z-index: 70; padding-top: 51px; background: none; border: 0;} [data-owner=""] .list-container {margin-top: -2px;} .list-block, .status-menu-container.fixed + div.list-block {margin: 0; min-height: auto;} .list-unit { width: auto; margin-left: 160px; padding: 10px 30px calc(100vh - 609px); background: none; border-radius: 0 0 10px;} .status-menu-container, .status-menu-container.fixed { position: fixed; top: 68px; left: calc(50% - 369px); width: 898px; height: 50px; border-radius: 0 10px 0 0; } .status-menu-container .status-menu { height: 100%; margin-left: 0; border-spacing: 36px 0; } .status-menu-container .status-menu .status-button {font: bold 11px Source Sans Pro; letter-spacing: 2px;} .status-menu-container .status-menu .status-button.on {font-size: 12px; color: black;} .status-menu-container .status-menu .status-button:after {height: 2px;} .status-menu-container .status-menu .status-button.all_anime:after {background: #222;} .status-menu-container .status-menu .status-button.watching:after {background-color: #2db039;} .status-menu-container .status-menu .status-button.plantowatch:after {background-color: #c3c3c3;} .status-menu-container .status-menu .status-button.completed:after {background-color: #26448f;} .status-menu-container .status-menu .status-button.onhold:after {background-color: #f1c83e;} .status-menu-container .status-menu .status-button.dropped:after {background-color: #a12f31;} .status-menu-container .search-container #search-box input {font: 11px Source Sans Pro; color: #999; letter-spacing: 1px; padding: 0 8px; border-radius: 10px; border: 1px solid #ccc;} .list-unit .list-status-title {width: 100%; height: 20px; background:none;} .list-unit .list-status-title .stats {height: auto; line-height: 0;} .list-unit .list-status-title .stats a {color: #999; margin: 0;} .list-table .list-table-header .header-title, .list-table .list-table-header .header-title .link.sort, .list-table .list-table-header .header-title .link.sort:hover {color: grey;} .list-table .list-table-header .header-title.status, .list-table .list-table-data .data.status {width: 2px; padding: 0;background: ;} .list-table .list-table-data .data.title, .list-table .list-table-data .data.studio {height: 40px; line-height: 1.2em;} .list-table .list-table-data .data.title .link {font-size: 11px;} .list-table .list-table-data .data.title .add-edit-more {float: none; display: inline-block; height: 0; font-size: 0; white-space: nowrap; margin-left: 5px; opacity: 0;} .list-table .list-table-data .data.title:hover .add-edit-more {opacity: 1;} .list-table .list-table-data .data.title .content-status {font-size: 9px; font-style: italic;} .list-table .list-table-data a:not(.edit-disabled):hover {text-decoration: none; background: #444; color: white;} .add a, .edit a, .list-table .list-table-data .data.tags {font-size: 8px; line-height:1em;} .list-unit .loading-space {margin: 5px;} footer { position: fixed; top: 609px; left: 0; z-index: 100; width: 100%; height: calc(100% - 609px); background: var(--background); } #footer-block {background: none; padding: 20px;} #copyright {font: 9px Source Sans Pro; color: white; text-shadow: 1px 1px 2px #333; padding-top: 15px;} #copyright:before {content: 'Designed by 5cm.';} This at the bottom should fix the tags .data.tags span, .data.tags span a, .list-table .list-table-data .data.tags, .list-table .list-table-data .data.tags a{ text-transform: none !important; } #header-menu-button, .anime .list-menu-float .icon-menu.anime-list, .anime .list-menu-float .icon-menu.anime-list svg, .anime .list-menu-float .icon-menu.anime-list .text, .anime .list-menu-float .icon-menu.anime-list:hover, .manga .list-menu-float .icon-menu.manga-list, .manga .list-menu-float .icon-menu.manga-list svg, .manga .list-menu-float .icon-menu.manga-list .text, .manga .list-menu-float .icon-menu.manga-list:hover { background-color: transparent;} .status-menu-container { background-color: #333;} .status-menu-container { border-bottom: 0;} .list-table { border: 0; } .list-table > tbody:nth-of-type(2n+1) { background-color: transparent; } .list-table .list-table-data .data { border-bottom: 0; } .list-table .list-table-header .header-title { background: rgba(5,5,5,.5); } .list-table .list-table-header .header-title, .list-table .list-table-header .header-title .link.sort, .list-table .list-table-header .header-title .link.sort:hover { color: grey; } .list-table .list-table-header .header-title .link { color: gray; } .status-menu-container .status-menu .status-button.on { color: black; } .list-table .list-table-data a.edit-disabled { color: white; } .list-table .list-table-header .header-title { border-bottom: 0;} |
Nov 10, 2020 11:26 PM
#6488
Shishio-kun said: AllIsManga said: Hello, so I'm using the grid style 2 code from this post. I absolutely love the format and layout of the six buttons and six banners, but I prefer to go back to the basic listing anime layout since the anime images are smaller and the tags are more easily visible. Is there a way to change that part back? I suck at explaining things, so maybe this image would help explain what I'm trying to ask for: I'm thinking that would require manually removing the codes that convert the table into the grid. The problem is there are thousands of lines of code in that layout so removing them manually to get the layout just right would be very time-consuming. Unless someone wants to manually do that, I think it'd be way easier to add the desired features of the grid style layout to a default list layout. That way you get the table you want with the features of the grid layout you're using now. What features do you want to carry over from grid style to a default layout: 6 banners, 6 buttons, side render, anything else? Oh ok! Yeah, the 6 banners, 6 buttons, side render, wallpaper, sort button, banner avatar, banner quote. |
"As promised, all that you seek, all that we desire, is prepared up there. On top of the Tower." |
Nov 11, 2020 2:57 PM
#6489
[quote=Shishio-kun message=61116774] Again, thanks a lot |
Nov 20, 2020 12:59 AM
#6490
Hello! Some time ago I saw your tutorial on List Layouts (https://www.youtube.com/watch?v=cA0g4HkNLic) and thank you! I would like to know where I can remove PG from anime information. Thank you in advance! A picture of what I want to delete: https://i.imgur.com/ULbQ9xs.png |
Nov 20, 2020 2:46 AM
#6491
-CHAR- said: Hello! Some time ago I saw your tutorial on List Layouts (https://www.youtube.com/watch?v=cA0g4HkNLic) and thank you! I would like to know where I can remove PG from anime information. Thank you in advance! A picture of what I want to delete: https://i.imgur.com/ULbQ9xs.png Your list is private so I can't look at your list and give you a code to remove it. But you can just uncheck the box for Rating here and that would remove all PG ratings from the list. Don't forget to save (Submit) after https://myanimelist.net/editprofile.php?go=listpreferences |
Nov 20, 2020 7:04 AM
#6493
I have another problem: in the boxes of All Anime, Currently Watching, Completed, On Hold, Dropped and Plan to Watch, the font barely stands out and is hard to notice. Is there anything that makes the market more obvious even when the animation is not running? A picture of the problem: https://imgur.com/JpPRagx Now I have the profile visible to everyone and if you want I can give you the code in private. Thank you in advance! |
Nov 20, 2020 3:51 PM
#6494
-CHAR- said: I have another problem: in the boxes of All Anime, Currently Watching, Completed, On Hold, Dropped and Plan to Watch, the font barely stands out and is hard to notice. Is there anything that makes the market more obvious even when the animation is not running? A picture of the problem: https://imgur.com/JpPRagx Now I have the profile visible to everyone and if you want I can give you the code in private. Thank you in advance! Add to the bottom of the CSS .status-menu-container .status-menu .status-button { text-shadow: 0 0 2px #000, 0 0 1px #000, 1px 1px 7px #000, 0 0 0 #000;} |
Nov 20, 2020 4:25 PM
#6495
Hello! I hope this is the right thread where to ask... if not, sorry! I'm using the old theme but I wanted to change to the new one... but my problem is that the new one load (for example) 100 titles and you have to browse all the page until it load the next titles. Is there a way to load all the titles in the modern theme like in the old one? Thanks! |
Nov 20, 2020 5:06 PM
#6496
yu6 said: Hello! I hope this is the right thread where to ask... if not, sorry! I'm using the old theme but I wanted to change to the new one... but my problem is that the new one load (for example) 100 titles and you have to browse all the page until it load the next titles. Is there a way to load all the titles in the modern theme like in the old one? Thanks! I don't think so, unfortunately I can't remember if anyone ever found a way to load all the titles in modern on page startup, and I don't know where to begin with finding a way to do that. Maybe one of the popular layouts has a way to do it through a script or something? |
Nov 21, 2020 2:25 AM
#6497
Shishio-kun said: yu6 said: Hello! I hope this is the right thread where to ask... if not, sorry! I'm using the old theme but I wanted to change to the new one... but my problem is that the new one load (for example) 100 titles and you have to browse all the page until it load the next titles. Is there a way to load all the titles in the modern theme like in the old one? Thanks! I don't think so, unfortunately I can't remember if anyone ever found a way to load all the titles in modern on page startup, and I don't know where to begin with finding a way to do that. Maybe one of the popular layouts has a way to do it through a script or something? Well... that's sad to know... I'll continue using the old theme for now. Thank you for the reply :) |
Nov 21, 2020 2:50 PM
#6498
yu6 said: Shishio-kun said: yu6 said: Hello! I hope this is the right thread where to ask... if not, sorry! I'm using the old theme but I wanted to change to the new one... but my problem is that the new one load (for example) 100 titles and you have to browse all the page until it load the next titles. Is there a way to load all the titles in the modern theme like in the old one? Thanks! I don't think so, unfortunately I can't remember if anyone ever found a way to load all the titles in modern on page startup, and I don't know where to begin with finding a way to do that. Maybe one of the popular layouts has a way to do it through a script or something? Well... that's sad to know... I'll continue using the old theme for now. Thank you for the reply :) I'm sure its possible with a script of some kind, there's probably some code on the page that says "limit 300 anime on startup" and a script could overwrite that and load them all for you personally There's a lot of nice classic CSS designs you can try too https://myanimelist.net/forum/?topicid=318587 |
Nov 21, 2020 2:55 PM
#6499
Shishio-kun said: yu6 said: Shishio-kun said: yu6 said: Hello! I hope this is the right thread where to ask... if not, sorry! I'm using the old theme but I wanted to change to the new one... but my problem is that the new one load (for example) 100 titles and you have to browse all the page until it load the next titles. Is there a way to load all the titles in the modern theme like in the old one? Thanks! I don't think so, unfortunately I can't remember if anyone ever found a way to load all the titles in modern on page startup, and I don't know where to begin with finding a way to do that. Maybe one of the popular layouts has a way to do it through a script or something? Well... that's sad to know... I'll continue using the old theme for now. Thank you for the reply :) I'm sure its possible with a script of some kind, there's probably some code on the page that says "limit 300 anime on startup" and a script could overwrite that and load them all for you personally There's a lot of nice classic CSS designs you can try too https://myanimelist.net/forum/?topicid=318587 Thank you! I'll see if there's something that I like :) |
Nov 22, 2020 7:37 AM
#6500
Hey guys, so I'm using clarity style 1, but I want to invert the colors so that it's on "dark mode" if you catch my drift. I've been trying to change the table colors but I don't see any change. Would you guys mind helping me out on this? Thanks! |
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 |