New
Jul 8, 2020 8:57 PM
#6301
@achoo_nice I was going to suggest using a fixed with with inline-block, but it looks like you've got that already sorted. :) Glad you found the solution. |
Jul 9, 2020 9:35 AM
#6302
Hello everyone, I noticed that malscraper stopped updating covers after the new api, is there a way to get new covers at the moment ? |
Jul 9, 2020 7:11 PM
#6303
MurakumoJP said: Hello everyone, I noticed that malscraper stopped updating covers after the new api, is there a way to get new covers at the moment ? Is it happening now? I see covers on both our lists atm |
Jul 10, 2020 8:39 AM
#6304
MurakumoJP said: Hello everyone, I noticed that malscraper stopped updating covers after the new api, is there a way to get new covers at the moment ? Is it happening now? I see covers on both our lists atm malscraper.azurewebsites.net gives an error when generating new covers. Although perhaps a mistake on my part. |
MurakumoJPJul 10, 2020 9:01 AM
Jul 10, 2020 2:39 PM
#6305
MurakumoJP said: MurakumoJP said: Hello everyone, I noticed that malscraper stopped updating covers after the new api, is there a way to get new covers at the moment ? Is it happening now? I see covers on both our lists atm malscraper.azurewebsites.net gives an error when generating new covers. Although perhaps a mistake on my part. https://myanimelist.net/animelist/MurakumoJP?status=6 OK I see it now shit D: well he or she always updated it a few days after, so I would wait to see what happens |
Jul 13, 2020 1:33 AM
#6306
Hi! I want my list to sort itself based on air start date when I click 'premiered', like how it does when I click score, type or progress. I can't seem to figure out how to do it. Is there a way to sort this:- https://myanimelist.net/animelist/presidentpotato like this:- https://myanimelist.net/animelist/presidentpotato?order=14&status=7 ? |
Jul 16, 2020 2:36 PM
#6307
presidentpotato said: Hi! I want my list to sort itself based on air start date when I click 'premiered', like how it does when I click score, type or progress. I can't seem to figure out how to do it. Is there a way to sort this:- https://myanimelist.net/animelist/presidentpotato like this:- https://myanimelist.net/animelist/presidentpotato?order=14&status=7 ? There isn't a way I can think of, unless you manually code the whole list to show it that way which would take forever and probably need constant updates. Maybe this would be something you'd be interested in. On my list, the top two panels in the middle link to anime recommendations and a bio. Maybe you could do something similar that so fans and viewers of your list can get essential info you'd like to get across to them, or even a link that sorts the list how you want. Would you be interested in something like that? |
Jul 16, 2020 11:47 PM
#6308
Hello there, for my anime list, I have tried to add a snow falling effect, but for some reason my snow isn't falling. How can I fix this? https://myanimelist.net/animelist/Zhuwx1 |
Jul 17, 2020 2:23 PM
#6309
Zhuwx1 said: Hello there, for my anime list, I have tried to add a snow falling effect, but for some reason my snow isn't falling. How can I fix this? https://myanimelist.net/animelist/Zhuwx1 You seem to be missing the animation codes. You need the selector and codes that sort of set the animation, which you have, but you also need codes for defining the animation itself that's why its not moving. Do you know where you got the snow from? I can find the animation codes there and you can add them to your CSS as an easy fix |
Jul 17, 2020 3:33 PM
#6310
Yes I got the snow animation here: https://myanimelist.net/forum/?topicid=1467482 Thank you in advance! |
Jul 17, 2020 5:55 PM
#6311
Zhuwx1 said: Yes I got the snow animation here: https://myanimelist.net/forum/?topicid=1467482 Thank you in advance! OK try adding to the bottom @keyframes Falling { 0% { background-position: 0 0, 0 0, 0 0; } 100% { background-position: 500px 1000px, 400px 400px, 300px 300px; } } @-webkit-keyframes Falling { 0% { background-position: 0 0, 0 0, 0 0; } 100% { background-position: 500px 1000px, 400px 400px, 300px 300px; } } |
Jul 25, 2020 1:36 PM
#6313
Ok, so I need some help. In my list there is a huge gap that I want to get rid of between the banner and the list, which lines should i delete to make that happen? Thanks in advance! P.S: I am using the One Piece preset that was on this site https://myanimelist.net/animelist/zera_scarlet |
zera_scarletJul 25, 2020 1:43 PM
Jul 25, 2020 3:14 PM
#6314
zera_scarlet said: Ok, so I need some help. In my list there is a huge gap that I want to get rid of between the banner and the list, which lines should i delete to make that happen? Thanks in advance! P.S: I am using the One Piece preset that was on this site https://myanimelist.net/animelist/zera_scarlet Add this CSS to the bottom of your current code. /* LIST BANNER SPACING */ body { /* Change spacing here - default value is 500px */ --table-top-spacing: 36px; } .list-unit { padding-top: var(--table-top-spacing); } .list-block .list-unit .list-status-title::after { height: calc(var(--table-top-spacing) + 255px) !important; background-size: cover; margin-top: calc(var(--table-top-spacing) * -1) !important; } .list-unit .list-status-title .stats { margin-top: calc((var(--table-top-spacing) * -1) - 50px); } .list-table .list-table-header { margin-top: calc(var(--table-top-spacing) * -1 - 15px); } It should remove the space with its current settings, but if you want a bit more or less space, feel free to change the top-most number (the "36px"). |
Jul 25, 2020 3:24 PM
#6315
Valerio_Lyndon said: zera_scarlet said: Ok, so I need some help. In my list there is a huge gap that I want to get rid of between the banner and the list, which lines should i delete to make that happen? Thanks in advance! P.S: I am using the One Piece preset that was on this site https://myanimelist.net/animelist/zera_scarlet Add this CSS to the bottom of your current code. /* LIST BANNER SPACING */ body { /* Change spacing here - default value is 500px */ --table-top-spacing: 36px; } .list-unit { padding-top: var(--table-top-spacing); } .list-block .list-unit .list-status-title::after { height: calc(var(--table-top-spacing) + 255px) !important; background-size: cover; margin-top: calc(var(--table-top-spacing) * -1) !important; } .list-unit .list-status-title .stats { margin-top: calc((var(--table-top-spacing) * -1) - 50px); } .list-table .list-table-header { margin-top: calc(var(--table-top-spacing) * -1 - 15px); } It should remove the space with its current settings, but if you want a bit more or less space, feel free to change the top-most number (the "36px"). Perfect! Thank you! |
Jul 25, 2020 10:54 PM
#6316
Jul 25, 2020 11:30 PM
#6317
coreynj said: Hey everybody, I'm attempting to modify my list's CSS to cover up hentai unless they hover over it. I've attempted using methods involving tags and nothing has worked so far, no matter what I do. Could someone help me? The solutions you are using were made for a different list design, and therefore don't work quite right on the design you're currently using. Delete what you've pasted (from lines 1102-1149 [image: lines highlighted in red]). Then, replace it with this modified code: /* ================ Hentai Tag Codes */ /* Change parts of the theme that don't work well with repositioned and enlarged tags */ .list-item .tags { left: 100px; opacity: 1; z-index: 999; } .list-table .list-table-data .tags > div { position: static; } .list-table .list-table-data .tags > div:not(:hover) { overflow: hidden; } .list-table .list-table-data .tags span { position: static; display: block; } .list-item .tags a { opacity: 0; transition: opacity 0.2s 0.1s; } .list-item:hover .tags a { opacity: 1; } .list-table .list-table-data .tags span::before { content: none; } .list-table .list-table-data .tags span a::before { content: "\f02b"; font: 15px FontAwesome; color: white; padding-right: 5px; } /* Add new styling for tag */ .list-table .list-item .tags a[href$="tag=Hentai"] { position: absolute; top: -45px; left: -100px; width: 180px; height: 280px; background: url(https://image.myanimelist.net/ui/PwvqXPRmhevBWTzGG2MTyTRdbIm5KVbqjZuwgytBARyXHyw9soZ9pg7jkdeqhWjcgGUdYpKfGvGOSmZVUqJlJWqX787v8lGgUmzXvqAy1IESSQ4SRpLy7wSzytu_naUb) #191919f2; font-size: 0; opacity: 1; pointer-events: none; transition: opacity 0.2s 0.1s; transform: scaleX(-1); } .list-table .list-item:hover .tags span a[href*="&tag=Hentai"]{ opacity: 0; } .list-table .list-item .tags a[href$="tag=Hentai"]::before { content: none; } |
Jul 25, 2020 11:40 PM
#6318
Valerio_Lyndon said: You're a lifesaver. Now let me take the next 4 hours to go over this line by line and take notes to understand what you did so I can hopefully do it myself if I have a problem like this again.coreynj said: Hey everybody, I'm attempting to modify my list's CSS to cover up hentai unless they hover over it. I've attempted using methods involving tags and nothing has worked so far, no matter what I do. Could someone help me? The solutions you are using were made for a different list design, and therefore don't work quite right on the design you're currently using. Delete what you've pasted (from lines 1102-1149 [image: lines highlighted in red]). Then, replace it with this modified code: /* ================ Hentai Tag Codes */ /* Change parts of the theme that don't work well with repositioned and enlarged tags */ .list-item .tags { left: 100px; opacity: 1; z-index: 999; } .list-table .list-table-data .tags > div { position: static; } .list-table .list-table-data .tags > div:not(:hover) { overflow: hidden; } .list-table .list-table-data .tags span { position: static; display: block; } .list-item .tags a { opacity: 0; transition: opacity 0.2s 0.1s; } .list-item:hover .tags a { opacity: 1; } .list-table .list-table-data .tags span::before { content: none; } .list-table .list-table-data .tags span a::before { content: "\f02b"; font: 15px FontAwesome; color: white; padding-right: 5px; } /* Add new styling for tag */ .list-table .list-item .tags a[href$="tag=Hentai"] { position: absolute; top: -45px; left: -100px; width: 180px; height: 280px; background: url(https://image.myanimelist.net/ui/PwvqXPRmhevBWTzGG2MTyTRdbIm5KVbqjZuwgytBARyXHyw9soZ9pg7jkdeqhWjcgGUdYpKfGvGOSmZVUqJlJWqX787v8lGgUmzXvqAy1IESSQ4SRpLy7wSzytu_naUb) #191919f2; font-size: 0; opacity: 1; pointer-events: none; transition: opacity 0.2s 0.1s; transform: scaleX(-1); } .list-table .list-item:hover .tags span a[href*="&tag=Hentai"]{ opacity: 0; } .list-table .list-item .tags a[href$="tag=Hentai"]::before { content: none; } |
Jul 26, 2020 10:52 PM
#6319
My list seems to cap off at 300 whenever I use 5cm's modern list layout design, any fixes? |
Jul 27, 2020 1:30 AM
#6320
EGOIST said: My list seems to cap off at 300 whenever I use 5cm's modern list layout design, any fixes? I've seen this issue before, it's rather a nuisance. The easiest fix is to force a vertical page overflow (visual overflow) that causes the scrollbar to appear and then scrolling up and down to make new items load. This can be done by either zooming in a ton using your web browser's zoom function, or causing an element to be oversized using CSS. But, this is a highly inelegant solution. I can probably make a better solution where it will act as normal, using the page scroll. The scrollbar will be less aesthetically pleasing as it won't be next to the list, but a small price to pay for a functional list. However, it will require rewriting a bunch of the theme so I can't get around to it tonight. I'll probably do it tomorrow since I've seen some other people with this issue before. For an explanation of why: MAL seems to trigger the loading of new entries when the page scroll hits the bottom. This specific list design does not scroll the page at all. It scrolls the list of entries itself, leaving the page completely scroll-less. This means new entries will never load unless forced by the aformentioned methods. |
Jul 28, 2020 5:26 PM
#6321
Jul 28, 2020 6:49 PM
#6322
Valerio_Lyndon said: Thank you very much, I appreciate the fix!@EGOIST I have made the previously mentioned changes, and it is working when I test it. If you want to check it out, I've posted in in my response here: [Link]. |
Aug 1, 2020 2:25 AM
#6323
hi! so is it possible to make the 'mal' menu show up on top instead of overlapping with the 'sort' menu and my banner avatar? if someone could help me with that, that'd be great! here's an image of what i'm talking about: |
Aug 1, 2020 1:03 PM
#6324
idylliqs said: hi! so is it possible to make the 'mal' menu show up on top instead of overlapping with the 'sort' menu and my banner avatar? if someone could help me with that, that'd be great! https://i.imgur.com/LRXdfFi.png Add this to the bottom of your CSS: /* Menu layering priority fix */ .list-menu-float { z-index: 250; } /* Menu hitbox fix */ .list-menu-float, .list-table-header { pointer-events: none; } .list-menu-float:hover, .list-menu-float::before, .list-table-header:hover, .list-table-header::before { pointer-events: auto; } I also included a change to the menu "hitboxes", so that you can click all the buttons in each menu, but feel free to not use that part if you don't want to. |
Aug 2, 2020 8:28 PM
#6325
is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? |
KalvusAug 2, 2020 8:34 PM
Aug 2, 2020 10:00 PM
#6326
Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en |
Aug 2, 2020 10:33 PM
#6327
Shishio-kun said: Thanks for replying but i ended up just restarting my PC and it worked again. It was really strange before tho, literally everywhere i scrolled on the site it would just say no results. Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en but while we are at it, im using that one Your name list layout but whenever i try to change the avatar the gif doesn't fit the box. This happens for every gif i use no matter the size. Ill change the list to the messed up version until you see it(then ill change it back), if you check you'll understand what i mean. Do you know any fixes to this problem? Thanks so much |
KalvusAug 2, 2020 10:41 PM
Aug 14, 2020 4:15 PM
#6328
Hey there~ I've been trying to make a new signature (my current one is pretty bland) and the look im going for is having a gif in the middle with 2 different images on the sides. However even after watching the video on bbcodes the images I was trying to align on the sides wouldnt show up (the main gif wouldnt go in the middle either), heres the code I used |
ReintardAug 14, 2020 4:22 PM
Aug 14, 2020 8:57 PM
#6329
Kalvus said: Shishio-kun said: Thanks for replying but i ended up just restarting my PC and it worked again. It was really strange before tho, literally everywhere i scrolled on the site it would just say no results. Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en but while we are at it, im using that one Your name list layout but whenever i try to change the avatar the gif doesn't fit the box. This happens for every gif i use no matter the size. Ill change the list to the messed up version until you see it(then ill change it back), if you check you'll understand what i mean. Do you know any fixes to this problem? Thanks so much Wow your profile looks nice! :O Oops I haven't checked on this thread in a while. Can you post the GIF here you're trying to use for the avatar? I don't know anything about this problem and need to see it in action |
Aug 14, 2020 8:58 PM
#6330
ReinIsAWeeb said: Hey there~ I've been trying to make a new signature (my current one is pretty bland) and the look im going for is having a gif in the middle with 2 different images on the sides. However even after watching the video on bbcodes the images I was trying to align on the sides wouldnt show up (the main gif wouldnt go in the middle either), heres the code I used It's kind of hard to align all those pics together because I think they add spaces at the top. Please post the original BBcode here and I'll see what I can do to get them to align better |
Aug 14, 2020 9:17 PM
#6331
Shishio-kun said: it’s not any specific gif. Every gif I use doesn’t automatically fit the avatar box, No matter what size gif I use. It’s as if the gif is auto sizing to the wrong size. Every gif I use auto sizes to fit only half of the box.Kalvus said: Shishio-kun said: Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en but while we are at it, im using that one Your name list layout but whenever i try to change the avatar the gif doesn't fit the box. This happens for every gif i use no matter the size. Ill change the list to the messed up version until you see it(then ill change it back), if you check you'll understand what i mean. Do you know any fixes to this problem? Thanks so much Wow your profile looks nice! :O Oops I haven't checked on this thread in a while. Can you post the GIF here you're trying to use for the avatar? I don't know anything about this problem and need to see it in action |
Aug 14, 2020 10:01 PM
#6332
Kalvus said: Shishio-kun said: it’s not any specific gif. Every gif I use doesn’t automatically fit the avatar box, No matter what size gif I use. It’s as if the gif is auto sizing to the wrong size. Every gif I use auto sizes to fit only half of the box.Kalvus said: Shishio-kun said: Thanks for replying but i ended up just restarting my PC and it worked again. It was really strange before tho, literally everywhere i scrolled on the site it would just say no results. Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en but while we are at it, im using that one Your name list layout but whenever i try to change the avatar the gif doesn't fit the box. This happens for every gif i use no matter the size. Ill change the list to the messed up version until you see it(then ill change it back), if you check you'll understand what i mean. Do you know any fixes to this problem? Thanks so much Wow your profile looks nice! :O Oops I haven't checked on this thread in a while. Can you post the GIF here you're trying to use for the avatar? I don't know anything about this problem and need to see it in action OK I see now. It fits any GIF into it but I think it's meant for square GIFs only. Maybe the original layouts should all be adjusted @_@ Add these codes to the bottom of the CSS and they'll be the new avatar codes. It'll fit a GIF in better and show the center of it. I got a test GIF in there already as an example. /* NEW BANNER AVATAR */ .list-table .list-table-header:after { background-image: url(https://i.imgur.com/nn8rm6P.gif); background-size: cover !important; background-position: center center; } |
Aug 14, 2020 10:13 PM
#6333
Shishio-kun said: ReinIsAWeeb said: Hey there~ I've been trying to make a new signature (my current one is pretty bland) and the look im going for is having a gif in the middle with 2 different images on the sides. However even after watching the video on bbcodes the images I was trying to align on the sides wouldnt show up (the main gif wouldnt go in the middle either), heres the code I used It's kind of hard to align all those pics together because I think they add spaces at the top. Please post the original BBcode here and I'll see what I can do to get them to align better Ah thank you so much! I replaced all the "[" with { in order for the code to not input if you dont mind~ {img align= right} https://imgur.com/a/KxSiDXM {/img} {img align=left} https://imgur.com/a/rWkYTz5 {/img} {img}https://i.imgur.com/pquqXOZ.gif{/img} |
Aug 14, 2020 11:39 PM
#6334
Shishio-kun said: thank you so much!Kalvus said: Shishio-kun said: Kalvus said: Shishio-kun said: Thanks for replying but i ended up just restarting my PC and it worked again. It was really strange before tho, literally everywhere i scrolled on the site it would just say no results. Kalvus said: is it just me or can you not download Stylus rn. im following shishio's tutorial for the "Customize the forum" but the link for stylus only shows an error page and the page for stylus on the chrome web store is also showing an error. edit: ok its definitely an error on my end because chrome web store is completely blank. it says there are no results in the chrome web store. uhhhh anyone know what might be causing this? Either of these links work? https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en but while we are at it, im using that one Your name list layout but whenever i try to change the avatar the gif doesn't fit the box. This happens for every gif i use no matter the size. Ill change the list to the messed up version until you see it(then ill change it back), if you check you'll understand what i mean. Do you know any fixes to this problem? Thanks so much Wow your profile looks nice! :O Oops I haven't checked on this thread in a while. Can you post the GIF here you're trying to use for the avatar? I don't know anything about this problem and need to see it in action OK I see now. It fits any GIF into it but I think it's meant for square GIFs only. Maybe the original layouts should all be adjusted @_@ Add these codes to the bottom of the CSS and they'll be the new avatar codes. It'll fit a GIF in better and show the center of it. I got a test GIF in there already as an example. /* NEW BANNER AVATAR */ .list-table .list-table-header:after { background-image: url(https://i.imgur.com/nn8rm6P.gif); background-size: cover !important; background-position: center center; } |
Aug 16, 2020 7:37 PM
#6335
I've seen a couple people do this, but id like to make all my text white. Like how theres dark blue themes, I want all the main colored things white, anybody know how I could do this. |
Aria is the greatest manga of all time |
Aug 18, 2020 8:35 AM
#6336
hello, i need help with changing the color of headers in my list, changing the color shadows of words, and how to add in the code that when you hover your mouse over the anime/manga title, the cover photo of the said anime/manga shows up |
Aug 18, 2020 6:00 PM
#6337
ReinIsAWeeb said: Shishio-kun said: ReinIsAWeeb said: Hey there~ I've been trying to make a new signature (my current one is pretty bland) and the look im going for is having a gif in the middle with 2 different images on the sides. However even after watching the video on bbcodes the images I was trying to align on the sides wouldnt show up (the main gif wouldnt go in the middle either), heres the code I used It's kind of hard to align all those pics together because I think they add spaces at the top. Please post the original BBcode here and I'll see what I can do to get them to align better Ah thank you so much! I replaced all the "[" with { in order for the code to not input if you dont mind~ {img align= right} https://imgur.com/a/KxSiDXM {/img} {img align=left} https://imgur.com/a/rWkYTz5 {/img} {img}https://i.imgur.com/pquqXOZ.gif{/img} You can just post the BBcode like normal because when I quote the post I can see the original BBcode you entered. Makes things much easier. Otherwise I have to rebuild the entire signature Well the best thing I think is to add some transparent space to the top of the GIF [center][img align=right]https://i.imgur.com/JSYiFPb.png[/img][img align=left]https://i.imgur.com/BRfdFlO.png[/img][img]https://i.imgur.com/7aLKRHk.gif[/img][/center] |
Shishio-kunAug 18, 2020 6:06 PM
Aug 18, 2020 6:02 PM
#6338
Shishio-kun said: ReinIsAWeeb said: Shishio-kun said: ReinIsAWeeb said: Hey there~ I've been trying to make a new signature (my current one is pretty bland) and the look im going for is having a gif in the middle with 2 different images on the sides. However even after watching the video on bbcodes the images I was trying to align on the sides wouldnt show up (the main gif wouldnt go in the middle either), heres the code I used It's kind of hard to align all those pics together because I think they add spaces at the top. Please post the original BBcode here and I'll see what I can do to get them to align better Ah thank you so much! I replaced all the "[" with { in order for the code to not input if you dont mind~ {img align= right} https://imgur.com/a/KxSiDXM {/img} {img align=left} https://imgur.com/a/rWkYTz5 {/img} {img}https://i.imgur.com/pquqXOZ.gif{/img} You can just post the BBcode like normal because when I quote the post I can see the original BBcode you entered. Makes things much easier. Otherwise I have to rebuild the entire signature Thank you so much! It looks amazing and yeah Ill try to do that next time sorry for the trouble. |
Aug 18, 2020 6:10 PM
#6339
DillonA said: I've seen a couple people do this, but id like to make all my text white. Like how theres dark blue themes, I want all the main colored things white, anybody know how I could do this. Add this to the bottom of your CSS *, a, .list-table .list-table-data .data a {color: white !important;} I also have a video on fonts that might go over this and does go over a lot of font stuff |
Aug 18, 2020 6:11 PM
#6340
@ReinIsAWeeb Did you see the updated post? I better aligned them here. You quoted the post when I was still working on the sig[center][img align=right]https://i.imgur.com/JSYiFPb.png[/img][img align=left]https://i.imgur.com/BRfdFlO.png[/img][img]https://i.imgur.com/7aLKRHk.gif[/img][/center] |
Aug 18, 2020 6:13 PM
#6341
blissom said: hello, i need help with changing the color of headers in my list, changing the color shadows of words, and how to add in the code that when you hover your mouse over the anime/manga title, the cover photo of the said anime/manga shows up headers: .table_header, .category_totals { background-color: red !important; } or .table_header, .category_totals { background-color: #0abc01; } or .table_header, .category_totals { background-color: rgba(255,0,0,.9); } text shadow: .animetitle { text-shadow: 1px 1px 1px rgba(255,255,255,1); } or .animetitle { text-shadow: 1px 1px 1px red; } or .animetitle { text-shadow: 1px 1px 1px #0abc01; } You add these codes to the bottom of the CSS. You can customize the colors with the numbers after rgba in some of those codes. You use the numbers in parenthesis. The #0abc01 is an HTML color You can generate different colors for HTML and RGBA here: https://www.hexcolortool.com/ For the last thing you'll have to pick one from here https://myanimelist.net/forum/?topicid=1162203 |
Shishio-kunAug 18, 2020 10:47 PM
Aug 18, 2020 6:28 PM
#6342
Shishio-kun said: @ReinIsAWeeb Did you see the updated post? I better aligned them here. You quoted the post when I was still working on the sig [center][img align=right]https://i.imgur.com/JSYiFPb.png[/img][img align=left]https://i.imgur.com/BRfdFlO.png[/img][img]https://i.imgur.com/7aLKRHk.gif[/img][/center] Ah thank you so much for working on it <3 |
Aug 18, 2020 6:40 PM
#6343
ReinIsAWeeb said: Shishio-kun said: @ReinIsAWeeb Did you see the updated post? I better aligned them here. You quoted the post when I was still working on the sig [center][img align=right]https://i.imgur.com/JSYiFPb.png[/img][img align=left]https://i.imgur.com/BRfdFlO.png[/img][img]https://i.imgur.com/7aLKRHk.gif[/img][/center] Ah thank you so much for working on it <3 Awesome! It looks good :D |
Aug 19, 2020 11:03 AM
#6344
Shishio-kun said: tysm! for the cover photos, when i try to edit the covers to pop/show out, the picture only shows if i click "more"blissom said: hello, i need help with changing the color of headers in my list, changing the color shadows of words, and how to add in the code that when you hover your mouse over the anime/manga title, the cover photo of the said anime/manga shows up headers: .table_header, .category_totals { background-color: red !important; } or .table_header, .category_totals { background-color: #0abc01; } or .table_header, .category_totals { background-color: rgba(255,0,0,.9); } text shadow: .animetitle { text-shadow: 1px 1px 1px rgba(255,255,255,1); } or .animetitle { text-shadow: 1px 1px 1px red; } or .animetitle { text-shadow: 1px 1px 1px #0abc01; } You add these codes to the bottom of the CSS. You can customize the colors with the numbers after rgba in some of those codes. You use the numbers in parenthesis. The #0abc01 is an HTML color You can generate different colors for HTML and RGBA here: https://www.hexcolortool.com/ For the last thing you'll have to pick one from here https://myanimelist.net/forum/?topicid=1162203 |
blissomAug 19, 2020 12:33 PM
Aug 19, 2020 1:06 PM
#6345
blissom said: Shishio-kun said: tysm! for the cover photos, when i try to edit the covers to pop/show out, the picture only shows if i click "more"blissom said: hello, i need help with changing the color of headers in my list, changing the color shadows of words, and how to add in the code that when you hover your mouse over the anime/manga title, the cover photo of the said anime/manga shows up headers: .table_header, .category_totals { background-color: red !important; } or .table_header, .category_totals { background-color: #0abc01; } or .table_header, .category_totals { background-color: rgba(255,0,0,.9); } text shadow: .animetitle { text-shadow: 1px 1px 1px rgba(255,255,255,1); } or .animetitle { text-shadow: 1px 1px 1px red; } or .animetitle { text-shadow: 1px 1px 1px #0abc01; } You add these codes to the bottom of the CSS. You can customize the colors with the numbers after rgba in some of those codes. You use the numbers in parenthesis. The #0abc01 is an HTML color You can generate different colors for HTML and RGBA here: https://www.hexcolortool.com/ For the last thing you'll have to pick one from here https://myanimelist.net/forum/?topicid=1162203 Which cover style are you trying to use? You have to be really specific. https://myanimelist.net/forum/?topicid=1162203 |
Aug 19, 2020 1:46 PM
#6346
Shishio-kun said: oh oops, this is the cover style im going for: https://myanimelist.net/forum/?topicid=563993 - mini reviews, hover tags/preview not includedblissom said: Shishio-kun said: blissom said: hello, i need help with changing the color of headers in my list, changing the color shadows of words, and how to add in the code that when you hover your mouse over the anime/manga title, the cover photo of the said anime/manga shows up headers: .table_header, .category_totals { background-color: red !important; } or .table_header, .category_totals { background-color: #0abc01; } or .table_header, .category_totals { background-color: rgba(255,0,0,.9); } text shadow: .animetitle { text-shadow: 1px 1px 1px rgba(255,255,255,1); } or .animetitle { text-shadow: 1px 1px 1px red; } or .animetitle { text-shadow: 1px 1px 1px #0abc01; } You add these codes to the bottom of the CSS. You can customize the colors with the numbers after rgba in some of those codes. You use the numbers in parenthesis. The #0abc01 is an HTML color You can generate different colors for HTML and RGBA here: https://www.hexcolortool.com/ For the last thing you'll have to pick one from here https://myanimelist.net/forum/?topicid=1162203 Which cover style are you trying to use? You have to be really specific. https://myanimelist.net/forum/?topicid=1162203 |
Aug 19, 2020 7:29 PM
#6347
@blissom hmm this seems to work on preview, does it work for you? Please leave it up if it doesn't work so I can see any problem and try to fix it @\import "https://malscraper.azurewebsites.net/covers/auto/presets/more"; a:hover, strong:hover {cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPKPtHqhXik0STKZLDAGjsA), progress !important;} body {font-family: Arimo; font-size: 12px; text-transform: lowercase; letter-spacing: 0.1em; color: #333; background: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFtPCM2MyvDkXnekka5ldBU) repeat top left fixed; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHYRDSoJywbTmXYZ4LSvj_A), auto !important;} #mal_control_strip:after {content: ""; display: block !important; position: fixed !important; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyHHcdDg4MydWTzyW8fhNAR4); background-repeat: no-repeat; background-position: center; height: 178px; width: 150px; left: 150px !important; top: 150px; z-index: 50; border: 5px solid #333;} #copyright {font-size: 9px; color: #333;} #copyright:hover::before {width: 150px; height: auto !important; padding: 5px; font-size: 9px !important; color: #333 !important; text-align: justify !important; background-image: none; transition: all 0.15s ease-in;} #copyright::before {content: "Design and coding by nymphiae."; display: block !important; font-size: 0px !important; color: transparent !important; position: fixed; width: 16px; height: 16px; bottom: 5px; right: 5px; background-color: #333; background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAEvr_XMlxd-oqIyAHfvI4o); background-repeat: no-repeat; background-position: center; transition: all 0.15s ease-out;} #copyright a {text-decoration: none; color: #555;} .status_selected, .status_not_selected {display: block; position: fixed; width: 25px; height: 25px; left: 315px; background-color: transparent; background-repeat: no-repeat; background-position: top left; transition: all 0.6s ease-out;} .status_selected a, .status_not_selected a {width: 25px; height: 25px; display: block; font-size: 0px !important; color: transparent !important; transition: all 0.6s ease-out;} .status_selected:first-of-type, .status_not_selected:first-of-type {top: 159px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyKvnkwujdGWGBLYIehKfivc);} .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) {top: 188px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBn0YK5UkCCeI_CQymNosxw);} .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) {top: 217px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyJabUvTCFDxTx-hewZqoxrw);} .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) {top: 246px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBXHJXxofz90F0tpjUtpvd8);} .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) {top: 275px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFfPwamDpJVeRSPyGz-Yf8k);} .status_selected:last-of-type, .status_not_selected:last-of-type {top: 304px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyEUSswpCh2VwR31tJxzFUEY);} .status_selected:hover, .status_not_selected:hover, .status_selected a:hover, .status_not_selected a:hover {width: 84px; transition: all 0.6s ease-in;} #list_surround {width: 600px; position: absolute; left: 460px; top: 0px; margin-bottom: 10px; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCaV4KrVhSCKLZCsUAIdBI), auto !important;} #mal_cs_listinfo strong a, #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {display: block; height: 25px; width: 25px; position: fixed; font-size: 0px !important; color: transparent !important; background-color: #333; z-index: 10; left: 120px; background-position: center; background-repeat: no-repeat; transition: all 0.6s ease-out;} #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {z-index: 5 !important} #mal_cs_listinfo strong a, #mal_cs_otherlinks div:last-of-type a:first-of-type {top: 202px;} #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {top: 231px;} #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:last-of-type {top: 260px;} #mal_cs_listinfo strong a {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKEHZpxcsrWR-uFSo7KWLl8);} #mal_cs_links div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIgYqozLZLUcfr_8v8Ijsas);} #mal_cs_links div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwLRcjCGiOop9LN4KQFOiQxU);} #mal_cs_otherlinks div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAsr6Bw2NOUe4r9enRQn3Xk);} #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHJMQHyrH0ClNuQIOnXNBmE);} #mal_cs_otherlinks div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGHSQ7kjZp-By81bBXAZ6V8);} #mal_cs_listinfo strong a:hover, #mal_cs_links div:last-of-type a:first-of-type:hover, #mal_cs_links div:last-of-type a:last-of-type:hover, #mal_cs_otherlinks div:last-of-type a:first-of-type:hover, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2):hover, #mal_cs_otherlinks div:last-of-type a:last-of-type:hover {background-color: #777; transition: all 0.6s ease-in;} #mal_cs_listinfo div:last-of-type, #mal_cs_links a[href="/"], #mal_cs_otherlinks div:first-of-type, #mal_cs_powered, #mal_cs_pic img {display: none; font-size: 0px !important; color: transparent;} #mal_control_strip {height: 0px !important; width: 1px !important; background: none !important;} #mal_control_strip td {border: none;} #mal_cs_otherlinks div:last-of-type {font-size: 0px !important; color: transparent;} #mal_cs_pic a, #mal_cs_links a.List_LightBox {visibility: hidden !important;} .category_totals {text-align: center; letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} .table_header, .table_headerLink {letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} #grand_totals {position: fixed; height: 168px; width: 150px; top: 155px; left: 155px; color: transparent; background-color: rgba(0,0,0,0); white-space: pre-line; text-align: center; z-index: 55; padding-top: 10px; transition: all 0.7s ease-out;} #grand_totals:hover {color: #f5f5f5; background-color: rgba(0,0,0,0.65); transition: all 0.7s ease-in;} #grand_totals::before {content: "grand totals"; display: block; padding-bottom: 5px;} #list_surround br {display: none;} td br {display: inline !important;} .header_cw, .header_completed, .header_onhold, .header_dropped, .header_all {margin-top: 25px; letter-spacing: -0.1em; text-transform: uppercase; font-size: 30px; text-align: center; font-weight: 700;} .header_ptw {font-size: 0px !important; margin-top: 25px; text-transform: uppercase; text-align: center; font-weight: 700;} .header_ptw::before {content: "planned"; font-size: 30px; letter-spacing: -0.1em;} td div[style="float: right;"] {opacity: 0 !important; transition: all 0.45s ease-out;} tr:hover [class^=td] div[style="float: right;"] {opacity: 1 !important; transition: all 0.45s ease-in;} tr:hover [class^=td] {background-color: rgba(0,0,0,0.015); transition: all 0.45s ease-in;} tr [class^=td] {transition: all 0.45s ease-out;} .td1, .td2 {height: 16px; background-color: rgba(0,0,0,0.055);} a {text-decoration: none; font-style: italic; color: #333;} strong, b {font-weight: normal !important;} .table_header, .category_totals {height: 18px; background-color: #6c4a4a;} .borderRBL {padding-left: 30px;} .animetitle + small {color: #deb396;} .animetitle + small::before, .animetitle + small::after {content: "~";} #inlineContent {display:inline-block !important; height: 100% !important; width: 100% !important; left:0 !important; right:0 !important; top:0 !important; margin:auto !important !important; position:fixed !important; z-index:-1 !important; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwK0Ynmltun-NUsq298unA6o), auto !important;} a[title="Click to increase your watched ep number by one"] {float: right; padding-right: 5px;} ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #333;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #333;} /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the cover's location around with left and top. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-size: cover; left: 830px; top: 160px; height: 350px; width: 226px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(8) { display: tab\le-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } |
Aug 19, 2020 8:03 PM
#6348
Shishio-kun said: hello! i put in what you sent and it worked! i'm not sure what the issue was when i was inputting it in earlier, but tysm :) is there a way to put the cover photo more to the right so it doesn't go over the progress and tags? also do i put in the same code for the manga section as well?@blissom hmm this seems to work on preview, does it work for you? Please leave it up if it doesn't work so I can see any problem and try to fix it @\import "https://malscraper.azurewebsites.net/covers/auto/presets/more"; a:hover, strong:hover {cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPKPtHqhXik0STKZLDAGjsA), progress !important;} body {font-family: Arimo; font-size: 12px; text-transform: lowercase; letter-spacing: 0.1em; color: #333; background: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFtPCM2MyvDkXnekka5ldBU) repeat top left fixed; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHYRDSoJywbTmXYZ4LSvj_A), auto !important;} #mal_control_strip:after {content: ""; display: block !important; position: fixed !important; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyHHcdDg4MydWTzyW8fhNAR4); background-repeat: no-repeat; background-position: center; height: 178px; width: 150px; left: 150px !important; top: 150px; z-index: 50; border: 5px solid #333;} #copyright {font-size: 9px; color: #333;} #copyright:hover::before {width: 150px; height: auto !important; padding: 5px; font-size: 9px !important; color: #333 !important; text-align: justify !important; background-image: none; transition: all 0.15s ease-in;} #copyright::before {content: "Design and coding by nymphiae."; display: block !important; font-size: 0px !important; color: transparent !important; position: fixed; width: 16px; height: 16px; bottom: 5px; right: 5px; background-color: #333; background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAEvr_XMlxd-oqIyAHfvI4o); background-repeat: no-repeat; background-position: center; transition: all 0.15s ease-out;} #copyright a {text-decoration: none; color: #555;} .status_selected, .status_not_selected {display: block; position: fixed; width: 25px; height: 25px; left: 315px; background-color: transparent; background-repeat: no-repeat; background-position: top left; transition: all 0.6s ease-out;} .status_selected a, .status_not_selected a {width: 25px; height: 25px; display: block; font-size: 0px !important; color: transparent !important; transition: all 0.6s ease-out;} .status_selected:first-of-type, .status_not_selected:first-of-type {top: 159px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyKvnkwujdGWGBLYIehKfivc);} .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) {top: 188px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBn0YK5UkCCeI_CQymNosxw);} .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) {top: 217px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyJabUvTCFDxTx-hewZqoxrw);} .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) {top: 246px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBXHJXxofz90F0tpjUtpvd8);} .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) {top: 275px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFfPwamDpJVeRSPyGz-Yf8k);} .status_selected:last-of-type, .status_not_selected:last-of-type {top: 304px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyEUSswpCh2VwR31tJxzFUEY);} .status_selected:hover, .status_not_selected:hover, .status_selected a:hover, .status_not_selected a:hover {width: 84px; transition: all 0.6s ease-in;} #list_surround {width: 600px; position: absolute; left: 460px; top: 0px; margin-bottom: 10px; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCaV4KrVhSCKLZCsUAIdBI), auto !important;} #mal_cs_listinfo strong a, #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {display: block; height: 25px; width: 25px; position: fixed; font-size: 0px !important; color: transparent !important; background-color: #333; z-index: 10; left: 120px; background-position: center; background-repeat: no-repeat; transition: all 0.6s ease-out;} #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {z-index: 5 !important} #mal_cs_listinfo strong a, #mal_cs_otherlinks div:last-of-type a:first-of-type {top: 202px;} #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {top: 231px;} #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:last-of-type {top: 260px;} #mal_cs_listinfo strong a {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKEHZpxcsrWR-uFSo7KWLl8);} #mal_cs_links div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIgYqozLZLUcfr_8v8Ijsas);} #mal_cs_links div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwLRcjCGiOop9LN4KQFOiQxU);} #mal_cs_otherlinks div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAsr6Bw2NOUe4r9enRQn3Xk);} #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHJMQHyrH0ClNuQIOnXNBmE);} #mal_cs_otherlinks div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGHSQ7kjZp-By81bBXAZ6V8);} #mal_cs_listinfo strong a:hover, #mal_cs_links div:last-of-type a:first-of-type:hover, #mal_cs_links div:last-of-type a:last-of-type:hover, #mal_cs_otherlinks div:last-of-type a:first-of-type:hover, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2):hover, #mal_cs_otherlinks div:last-of-type a:last-of-type:hover {background-color: #777; transition: all 0.6s ease-in;} #mal_cs_listinfo div:last-of-type, #mal_cs_links a[href="/"], #mal_cs_otherlinks div:first-of-type, #mal_cs_powered, #mal_cs_pic img {display: none; font-size: 0px !important; color: transparent;} #mal_control_strip {height: 0px !important; width: 1px !important; background: none !important;} #mal_control_strip td {border: none;} #mal_cs_otherlinks div:last-of-type {font-size: 0px !important; color: transparent;} #mal_cs_pic a, #mal_cs_links a.List_LightBox {visibility: hidden !important;} .category_totals {text-align: center; letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} .table_header, .table_headerLink {letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} #grand_totals {position: fixed; height: 168px; width: 150px; top: 155px; left: 155px; color: transparent; background-color: rgba(0,0,0,0); white-space: pre-line; text-align: center; z-index: 55; padding-top: 10px; transition: all 0.7s ease-out;} #grand_totals:hover {color: #f5f5f5; background-color: rgba(0,0,0,0.65); transition: all 0.7s ease-in;} #grand_totals::before {content: "grand totals"; display: block; padding-bottom: 5px;} #list_surround br {display: none;} td br {display: inline !important;} .header_cw, .header_completed, .header_onhold, .header_dropped, .header_all {margin-top: 25px; letter-spacing: -0.1em; text-transform: uppercase; font-size: 30px; text-align: center; font-weight: 700;} .header_ptw {font-size: 0px !important; margin-top: 25px; text-transform: uppercase; text-align: center; font-weight: 700;} .header_ptw::before {content: "planned"; font-size: 30px; letter-spacing: -0.1em;} td div[style="float: right;"] {opacity: 0 !important; transition: all 0.45s ease-out;} tr:hover [class^=td] div[style="float: right;"] {opacity: 1 !important; transition: all 0.45s ease-in;} tr:hover [class^=td] {background-color: rgba(0,0,0,0.015); transition: all 0.45s ease-in;} tr [class^=td] {transition: all 0.45s ease-out;} .td1, .td2 {height: 16px; background-color: rgba(0,0,0,0.055);} a {text-decoration: none; font-style: italic; color: #333;} strong, b {font-weight: normal !important;} .table_header, .category_totals {height: 18px; background-color: #6c4a4a;} .borderRBL {padding-left: 30px;} .animetitle + small {color: #deb396;} .animetitle + small::before, .animetitle + small::after {content: "~";} #inlineContent {display:inline-block !important; height: 100% !important; width: 100% !important; left:0 !important; right:0 !important; top:0 !important; margin:auto !important !important; position:fixed !important; z-index:-1 !important; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwK0Ynmltun-NUsq298unA6o), auto !important;} a[title="Click to increase your watched ep number by one"] {float: right; padding-right: 5px;} ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #333;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #333;} /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the cover's location around with left and top. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-size: cover; left: 830px; top: 160px; height: 350px; width: 226px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(8) { display: tab\le-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } |
Aug 20, 2020 3:05 PM
#6349
blissom said: Shishio-kun said: hello! i put in what you sent and it worked! i'm not sure what the issue was when i was inputting it in earlier, but tysm :) is there a way to put the cover photo more to the right so it doesn't go over the progress and tags? also do i put in the same code for the manga section as well?@blissom hmm this seems to work on preview, does it work for you? Please leave it up if it doesn't work so I can see any problem and try to fix it @\import "https://malscraper.azurewebsites.net/covers/auto/presets/more"; a:hover, strong:hover {cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPKPtHqhXik0STKZLDAGjsA), progress !important;} body {font-family: Arimo; font-size: 12px; text-transform: lowercase; letter-spacing: 0.1em; color: #333; background: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFtPCM2MyvDkXnekka5ldBU) repeat top left fixed; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHYRDSoJywbTmXYZ4LSvj_A), auto !important;} #mal_control_strip:after {content: ""; display: block !important; position: fixed !important; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyHHcdDg4MydWTzyW8fhNAR4); background-repeat: no-repeat; background-position: center; height: 178px; width: 150px; left: 150px !important; top: 150px; z-index: 50; border: 5px solid #333;} #copyright {font-size: 9px; color: #333;} #copyright:hover::before {width: 150px; height: auto !important; padding: 5px; font-size: 9px !important; color: #333 !important; text-align: justify !important; background-image: none; transition: all 0.15s ease-in;} #copyright::before {content: "Design and coding by nymphiae."; display: block !important; font-size: 0px !important; color: transparent !important; position: fixed; width: 16px; height: 16px; bottom: 5px; right: 5px; background-color: #333; background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAEvr_XMlxd-oqIyAHfvI4o); background-repeat: no-repeat; background-position: center; transition: all 0.15s ease-out;} #copyright a {text-decoration: none; color: #555;} .status_selected, .status_not_selected {display: block; position: fixed; width: 25px; height: 25px; left: 315px; background-color: transparent; background-repeat: no-repeat; background-position: top left; transition: all 0.6s ease-out;} .status_selected a, .status_not_selected a {width: 25px; height: 25px; display: block; font-size: 0px !important; color: transparent !important; transition: all 0.6s ease-out;} .status_selected:first-of-type, .status_not_selected:first-of-type {top: 159px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyKvnkwujdGWGBLYIehKfivc);} .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) {top: 188px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBn0YK5UkCCeI_CQymNosxw);} .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) {top: 217px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyJabUvTCFDxTx-hewZqoxrw);} .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) {top: 246px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBXHJXxofz90F0tpjUtpvd8);} .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) {top: 275px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFfPwamDpJVeRSPyGz-Yf8k);} .status_selected:last-of-type, .status_not_selected:last-of-type {top: 304px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyEUSswpCh2VwR31tJxzFUEY);} .status_selected:hover, .status_not_selected:hover, .status_selected a:hover, .status_not_selected a:hover {width: 84px; transition: all 0.6s ease-in;} #list_surround {width: 600px; position: absolute; left: 460px; top: 0px; margin-bottom: 10px; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCaV4KrVhSCKLZCsUAIdBI), auto !important;} #mal_cs_listinfo strong a, #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {display: block; height: 25px; width: 25px; position: fixed; font-size: 0px !important; color: transparent !important; background-color: #333; z-index: 10; left: 120px; background-position: center; background-repeat: no-repeat; transition: all 0.6s ease-out;} #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {z-index: 5 !important} #mal_cs_listinfo strong a, #mal_cs_otherlinks div:last-of-type a:first-of-type {top: 202px;} #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {top: 231px;} #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:last-of-type {top: 260px;} #mal_cs_listinfo strong a {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKEHZpxcsrWR-uFSo7KWLl8);} #mal_cs_links div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIgYqozLZLUcfr_8v8Ijsas);} #mal_cs_links div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwLRcjCGiOop9LN4KQFOiQxU);} #mal_cs_otherlinks div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAsr6Bw2NOUe4r9enRQn3Xk);} #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHJMQHyrH0ClNuQIOnXNBmE);} #mal_cs_otherlinks div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGHSQ7kjZp-By81bBXAZ6V8);} #mal_cs_listinfo strong a:hover, #mal_cs_links div:last-of-type a:first-of-type:hover, #mal_cs_links div:last-of-type a:last-of-type:hover, #mal_cs_otherlinks div:last-of-type a:first-of-type:hover, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2):hover, #mal_cs_otherlinks div:last-of-type a:last-of-type:hover {background-color: #777; transition: all 0.6s ease-in;} #mal_cs_listinfo div:last-of-type, #mal_cs_links a[href="/"], #mal_cs_otherlinks div:first-of-type, #mal_cs_powered, #mal_cs_pic img {display: none; font-size: 0px !important; color: transparent;} #mal_control_strip {height: 0px !important; width: 1px !important; background: none !important;} #mal_control_strip td {border: none;} #mal_cs_otherlinks div:last-of-type {font-size: 0px !important; color: transparent;} #mal_cs_pic a, #mal_cs_links a.List_LightBox {visibility: hidden !important;} .category_totals {text-align: center; letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} .table_header, .table_headerLink {letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} #grand_totals {position: fixed; height: 168px; width: 150px; top: 155px; left: 155px; color: transparent; background-color: rgba(0,0,0,0); white-space: pre-line; text-align: center; z-index: 55; padding-top: 10px; transition: all 0.7s ease-out;} #grand_totals:hover {color: #f5f5f5; background-color: rgba(0,0,0,0.65); transition: all 0.7s ease-in;} #grand_totals::before {content: "grand totals"; display: block; padding-bottom: 5px;} #list_surround br {display: none;} td br {display: inline !important;} .header_cw, .header_completed, .header_onhold, .header_dropped, .header_all {margin-top: 25px; letter-spacing: -0.1em; text-transform: uppercase; font-size: 30px; text-align: center; font-weight: 700;} .header_ptw {font-size: 0px !important; margin-top: 25px; text-transform: uppercase; text-align: center; font-weight: 700;} .header_ptw::before {content: "planned"; font-size: 30px; letter-spacing: -0.1em;} td div[style="float: right;"] {opacity: 0 !important; transition: all 0.45s ease-out;} tr:hover [class^=td] div[style="float: right;"] {opacity: 1 !important; transition: all 0.45s ease-in;} tr:hover [class^=td] {background-color: rgba(0,0,0,0.015); transition: all 0.45s ease-in;} tr [class^=td] {transition: all 0.45s ease-out;} .td1, .td2 {height: 16px; background-color: rgba(0,0,0,0.055);} a {text-decoration: none; font-style: italic; color: #333;} strong, b {font-weight: normal !important;} .table_header, .category_totals {height: 18px; background-color: #6c4a4a;} .borderRBL {padding-left: 30px;} .animetitle + small {color: #deb396;} .animetitle + small::before, .animetitle + small::after {content: "~";} #inlineContent {display:inline-block !important; height: 100% !important; width: 100% !important; left:0 !important; right:0 !important; top:0 !important; margin:auto !important !important; position:fixed !important; z-index:-1 !important; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwK0Ynmltun-NUsq298unA6o), auto !important;} a[title="Click to increase your watched ep number by one"] {float: right; padding-right: 5px;} ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #333;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #333;} /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the cover's location around with left and top. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-size: cover; left: 830px; top: 160px; height: 350px; width: 226px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(8) { display: tab\le-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } Go to the bottom of the code and scroll up a little to /* COVER AREA under there is left and top codes. You can change the number to move the cover pic. You can try the code on the manga list, and if it doesn't work right, we have to change the line at the top to a manga import but it should be available |
Aug 20, 2020 4:03 PM
#6350
Shishio-kun said: hello, yes i changed the top part and changed the parts to suit my mangalist more, but now the covers aren't showing up. only one cover shows and its different from the actual title.blissom said: Shishio-kun said: @blissom hmm this seems to work on preview, does it work for you? Please leave it up if it doesn't work so I can see any problem and try to fix it @\import "https://malscraper.azurewebsites.net/covers/auto/presets/more"; a:hover, strong:hover {cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwPKPtHqhXik0STKZLDAGjsA), progress !important;} body {font-family: Arimo; font-size: 12px; text-transform: lowercase; letter-spacing: 0.1em; color: #333; background: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFtPCM2MyvDkXnekka5ldBU) repeat top left fixed; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHYRDSoJywbTmXYZ4LSvj_A), auto !important;} #mal_control_strip:after {content: ""; display: block !important; position: fixed !important; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyHHcdDg4MydWTzyW8fhNAR4); background-repeat: no-repeat; background-position: center; height: 178px; width: 150px; left: 150px !important; top: 150px; z-index: 50; border: 5px solid #333;} #copyright {font-size: 9px; color: #333;} #copyright:hover::before {width: 150px; height: auto !important; padding: 5px; font-size: 9px !important; color: #333 !important; text-align: justify !important; background-image: none; transition: all 0.15s ease-in;} #copyright::before {content: "Design and coding by nymphiae."; display: block !important; font-size: 0px !important; color: transparent !important; position: fixed; width: 16px; height: 16px; bottom: 5px; right: 5px; background-color: #333; background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAEvr_XMlxd-oqIyAHfvI4o); background-repeat: no-repeat; background-position: center; transition: all 0.15s ease-out;} #copyright a {text-decoration: none; color: #555;} .status_selected, .status_not_selected {display: block; position: fixed; width: 25px; height: 25px; left: 315px; background-color: transparent; background-repeat: no-repeat; background-position: top left; transition: all 0.6s ease-out;} .status_selected a, .status_not_selected a {width: 25px; height: 25px; display: block; font-size: 0px !important; color: transparent !important; transition: all 0.6s ease-out;} .status_selected:first-of-type, .status_not_selected:first-of-type {top: 159px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyKvnkwujdGWGBLYIehKfivc);} .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) {top: 188px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBn0YK5UkCCeI_CQymNosxw);} .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) {top: 217px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyJabUvTCFDxTx-hewZqoxrw);} .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) {top: 246px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyBXHJXxofz90F0tpjUtpvd8);} .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) {top: 275px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyFfPwamDpJVeRSPyGz-Yf8k);} .status_selected:last-of-type, .status_not_selected:last-of-type {top: 304px; background-image: url(https://image.myanimelist.net/ui/yCHrxjyj0lwjmGEXjAnOyEUSswpCh2VwR31tJxzFUEY);} .status_selected:hover, .status_not_selected:hover, .status_selected a:hover, .status_not_selected a:hover {width: 84px; transition: all 0.6s ease-in;} #list_surround {width: 600px; position: absolute; left: 460px; top: 0px; margin-bottom: 10px; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwFCaV4KrVhSCKLZCsUAIdBI), auto !important;} #mal_cs_listinfo strong a, #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {display: block; height: 25px; width: 25px; position: fixed; font-size: 0px !important; color: transparent !important; background-color: #333; z-index: 10; left: 120px; background-position: center; background-repeat: no-repeat; transition: all 0.6s ease-out;} #mal_cs_otherlinks div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2), #mal_cs_otherlinks div:last-of-type a:last-of-type {z-index: 5 !important} #mal_cs_listinfo strong a, #mal_cs_otherlinks div:last-of-type a:first-of-type {top: 202px;} #mal_cs_links div:last-of-type a:first-of-type, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {top: 231px;} #mal_cs_links div:last-of-type a:last-of-type, #mal_cs_otherlinks div:last-of-type a:last-of-type {top: 260px;} #mal_cs_listinfo strong a {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwKEHZpxcsrWR-uFSo7KWLl8);} #mal_cs_links div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwIgYqozLZLUcfr_8v8Ijsas);} #mal_cs_links div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwLRcjCGiOop9LN4KQFOiQxU);} #mal_cs_otherlinks div:last-of-type a:first-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwAsr6Bw2NOUe4r9enRQn3Xk);} #mal_cs_otherlinks div:last-of-type a:nth-of-type(2) {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwHJMQHyrH0ClNuQIOnXNBmE);} #mal_cs_otherlinks div:last-of-type a:last-of-type {background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwGHSQ7kjZp-By81bBXAZ6V8);} #mal_cs_listinfo strong a:hover, #mal_cs_links div:last-of-type a:first-of-type:hover, #mal_cs_links div:last-of-type a:last-of-type:hover, #mal_cs_otherlinks div:last-of-type a:first-of-type:hover, #mal_cs_otherlinks div:last-of-type a:nth-of-type(2):hover, #mal_cs_otherlinks div:last-of-type a:last-of-type:hover {background-color: #777; transition: all 0.6s ease-in;} #mal_cs_listinfo div:last-of-type, #mal_cs_links a[href="/"], #mal_cs_otherlinks div:first-of-type, #mal_cs_powered, #mal_cs_pic img {display: none; font-size: 0px !important; color: transparent;} #mal_control_strip {height: 0px !important; width: 1px !important; background: none !important;} #mal_control_strip td {border: none;} #mal_cs_otherlinks div:last-of-type {font-size: 0px !important; color: transparent;} #mal_cs_pic a, #mal_cs_links a.List_LightBox {visibility: hidden !important;} .category_totals {text-align: center; letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} .table_header, .table_headerLink {letter-spacing: 0; text-shadow: 1px 1px 1px rgba(0,0,0,1); color: #fff;} #grand_totals {position: fixed; height: 168px; width: 150px; top: 155px; left: 155px; color: transparent; background-color: rgba(0,0,0,0); white-space: pre-line; text-align: center; z-index: 55; padding-top: 10px; transition: all 0.7s ease-out;} #grand_totals:hover {color: #f5f5f5; background-color: rgba(0,0,0,0.65); transition: all 0.7s ease-in;} #grand_totals::before {content: "grand totals"; display: block; padding-bottom: 5px;} #list_surround br {display: none;} td br {display: inline !important;} .header_cw, .header_completed, .header_onhold, .header_dropped, .header_all {margin-top: 25px; letter-spacing: -0.1em; text-transform: uppercase; font-size: 30px; text-align: center; font-weight: 700;} .header_ptw {font-size: 0px !important; margin-top: 25px; text-transform: uppercase; text-align: center; font-weight: 700;} .header_ptw::before {content: "planned"; font-size: 30px; letter-spacing: -0.1em;} td div[style="float: right;"] {opacity: 0 !important; transition: all 0.45s ease-out;} tr:hover [class^=td] div[style="float: right;"] {opacity: 1 !important; transition: all 0.45s ease-in;} tr:hover [class^=td] {background-color: rgba(0,0,0,0.015); transition: all 0.45s ease-in;} tr [class^=td] {transition: all 0.45s ease-out;} .td1, .td2 {height: 16px; background-color: rgba(0,0,0,0.055);} a {text-decoration: none; font-style: italic; color: #333;} strong, b {font-weight: normal !important;} .table_header, .category_totals {height: 18px; background-color: #6c4a4a;} .borderRBL {padding-left: 30px;} .animetitle + small {color: #deb396;} .animetitle + small::before, .animetitle + small::after {content: "~";} #inlineContent {display:inline-block !important; height: 100% !important; width: 100% !important; left:0 !important; right:0 !important; top:0 !important; margin:auto !important !important; position:fixed !important; z-index:-1 !important; cursor: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwK0Ynmltun-NUsq298unA6o), auto !important;} a[title="Click to increase your watched ep number by one"] {float: right; padding-right: 5px;} ::-webkit-scrollbar {height: 7px; width: 7px; background-color: #333;} ::-webkit-scrollbar-thumb {border: 2px solid #f5f5f5; background-color: #333;} /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the cover's location around with left and top. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-size: cover; left: 830px; top: 160px; height: 350px; width: 226px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(8) { display: tab\le-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } Go to the bottom of the code and scroll up a little to /* COVER AREA under there is left and top codes. You can change the number to move the cover pic. You can try the code on the manga list, and if it doesn't work right, we have to change the line at the top to a manga import but it should be available |
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 |