New
Oct 17, 2014 11:53 AM
#151
First of all, thanks for all the guides! Second, some noob questions: 1. How to adjust the vertical space between the blocks (tables)? Pic: http://puu.sh/cg3DJ/9d971de4f6.png 2. The "Score" title in it's cell shows only when I hover (you can see it on my list: http://myanimelist.net/animelist/Derpsley). How to make it visible all the time? |
Oct 18, 2014 12:38 PM
#152
Derpsley said: First of all, thanks for all the guides! Second, some noob questions: 1. How to adjust the vertical space between the blocks (tables)? Pic: http://puu.sh/cg3DJ/9d971de4f6.png 2. The "Score" title in it's cell shows only when I hover (you can see it on my list: http://myanimelist.net/animelist/Derpsley). How to make it visible all the time? background-position: left bottom !important; margin-bottom: 0 !important; margin-top: 99px !important; To all custom headers- margin top is amount of space remove /* HEADER Deletes the header Tags which isn't necessary. */ .table_header:nth-of-type(3) { display: none; } |
Oct 20, 2014 8:27 PM
#153
hi, I have 2 main questions.. 1.) How do I remove the Cover Previews on the list I'm using? 2.) Is it possible to change the text/tab proportions? (i'd like to make the text slightly bigger, and the 'watching', çompleted', etc tabs slightly smaller) bonus: can't describe it well, but when you hover over a tab for the first time, it disappears. is this fixable? |
Disappear. This chair is an eyesore. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. This chair. |
Oct 21, 2014 8:26 PM
#154
Brynhild said: hi, I have 2 main questions.. 1.) How do I remove the Cover Previews on the list I'm using? 2.) Is it possible to change the text/tab proportions? (i'd like to make the text slightly bigger, and the 'watching', çompleted', etc tabs slightly smaller) bonus: can't describe it well, but when you hover over a tab for the first time, it disappears. is this fixable? 1. read thru your code and remove the stuff under "covers" 2. "font size" codes under the parts you want larger (many already present in code) 3. its loading the image probably, since its on hover they don't load when the page loads. put the images secretly in a clear or invisible part of the layout so they load for the user when they open the page and won't need to again when they hover the buttons |
Oct 27, 2014 6:07 AM
#155
I've used your basic layout CSS code and then added the addon for showing the cover of the anime when hovering. Right now my problem is that when i add code for changing opacity it only works for the heads (Watching, Completed etc.) and not my anime list. Do you know why this might be happening? |
Oct 27, 2014 12:24 PM
#156
LamboLighting said: I've used your basic layout CSS code and then added the addon for showing the cover of the anime when hovering. Right now my problem is that when i add code for changing opacity it only works for the heads (Watching, Completed etc.) and not my anime list. Do you know why this might be happening? Is it the bottom code? It is set to 1, it needs to be a number like .8 to show any changes. If its not that tell me what code you're referring to in your CSS or add it in, and link the topic too. Otherwise its hard to know what you're talking about or fix it |
Oct 29, 2014 3:29 AM
#157
Below is my code. You can also check my list and how it looks, i won't be changing it. My problem is that when making changes to the list table it's only applied to the header (watching, completed etc.) and not the names of the animes below it. I can't seem to figure out why is that by looking at the code. Your help would be appreciated! @import "https://googledrive.com/host/0BxjwQr0BBXs-aWFrYzJjVnpoVVE"; @import url(http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://onepiece.wnngroup.com/wp-content/uploads/2014/09/blackbeard-one-piece-vs-luffy-2.jpg); background-attachment: fixed; } /* HEADER COLOR AND FONT These codes control the main headers' fonts and colors. Every header is above each part of your list (they say things like Currently Watching, Completed, Dropped, etc). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations). */ .header_title { background-color:black; color:red; font-family:english111 vivace bt; font-size:36px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:navy; } /* ANIME/MANGA TITLE FONTS This is the type and color of the anime/manga titles on your list, like Bleach, Vampire Knight, etc. */ .animetitle, .animetitle:visited { color:cyan; font-family:Verdana; font-size:16px; } /* LIST FONTS This is the type and color for more of the numbers, links, and words on the list itself! */ .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color:white; font-family:Lucida Grande; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:775px; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other properties, they can be any of the following: left, top, bottom, right, or center. So if you want your background to start from the center of the screen, use "center center" after background-position in the code below, replacing "center 43%". If you want it to start from the top and left, use "top left" If you want it to start from the top and center, use "top center". If you want it to start from the right and top, use "right top" If you want it to start from the right and bottom, use "right bottom" and so forth... Additionally, you can change "left" to a % to determine how far left or right the background starts from. For example "30% top" will start the background from the top but 30% of the pic's width from the left of the layout. You can also change top to a % to change the amount you want to start it from the top or bottom. */ body{ background-position: center 43%;} /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:red; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); border-width:0; padding:2px; } .category_totals:HOVER, .td1:HOVER, .td2:HOVER, #grand_totals:HOVER, #copyright:HOVER {background-color:black; border-width:0; padding:2px; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } .status_selected { background-color:black; padding:2px; color:white; text-decoration: blink; } .status_not_selected { background-color:black; padding:2px; color:white; } .status_selected a{ color:cyan; } .status_not_selected a{ color:white; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:40px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-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; } /* 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: 1025px; top: 30%; 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; } /* PREVIEW MSG ABOVE COVERS Remove content: "preview"; to remove the PREVIEW text. Change the text in quotations after content to what you want it to say above your cover pic. Top and width controls the position of the text. */ .hide:before { color: white; background: transparent; content: "Anime Cover"; padding-bottom: 5px; position: absolute; text-align: center; width: 225px; top: -25px; border-radius: 25px 25px 0 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /* Will round the headers */ .header_title{ border-radius: 15px 15px 0px 0px; } .category_totals, .td1, .td2, #grand_totals, #copyright { opacity:1 !important; filter:alpha(opacity=100) !important; } |
Nov 25, 2014 7:24 AM
#158
Hi 1st ,ty for guide . it really helps. and 2. i couldnt solve my problem with other links ,probably its too easy but im not good with this things. anyway problem s selected titles (completed, dropped..) are cyan when u pick one of them , and if u move your mouse one of the title (any title anime names , ratings ..) it turns red. so i wanna change these but couldnt find a way. (edit:i solved cyan color part but still couldnt find how to change red color) |
FronNNov 25, 2014 7:46 AM
Jan 23, 2015 1:54 PM
#159
I can't see the images for this tutorial can anyone help me here? |
Jan 23, 2015 2:08 PM
#160
ShadowFoxx said: I can't see the images for this tutorial can anyone help me here? It's even in the club name http://myanimelist.net/forum/?topicid=1341463 |
Feb 14, 2015 4:53 AM
#162
Jed-kun said: umm. thumbnails of the animes are not showing .. You didn't install the code right. You're missing w/e codes make cover pics appear in that layout (like the import at the top). Try recopying/pasting the code again and make sure you copy the entire layout. It also looks like the bottom may have been cut off too, so you may have missed some codes there too. |
Feb 14, 2015 6:42 AM
#163
On your beginners tutorial, I went wrong on step 3. How can I get that first code back or what do I do. |
Mar 14, 2015 7:50 PM
#164
Mar 27, 2015 6:28 PM
#165
I think I successfully copied everything and I can see all the changes I've made but other users can't seem to see the background I've uploaded. Why is this? I tried changing images but it still doesn't work. Thanks |
Mar 27, 2015 6:32 PM
#166
Hisoka-s said: I think I successfully copied everything and I can see all the changes I've made but other users can't seem to see the background I've uploaded. Why is this? I tried changing images but it still doesn't work. Thanks The link for the image you are using is dead: http://i1.pixiv.net/img-original/img/2015/03/13/04/42/08/49244344_p0.jpg |
Mar 28, 2015 8:17 PM
#167
Satiriques said: Hisoka-s said: I think I successfully copied everything and I can see all the changes I've made but other users can't seem to see the background I've uploaded. Why is this? I tried changing images but it still doesn't work. Thanks The link for the image you are using is dead: http://i1.pixiv.net/img-original/img/2015/03/13/04/42/08/49244344_p0.jpg Oh ok, thanks for the reply c: |
Apr 14, 2015 1:40 PM
#168
Thanks a lot~! great tutorial~! I just started today and already made few changes on my own~ I'm so exited to learn more and little by little make my own layout! :D |
May 22, 2015 8:02 PM
#169
May 23, 2015 7:23 AM
#170
Kallanar said: i used the Highschool DxD layout but it is not fitting right i cant see the last icon on the left all the way and the list on the left looks overly large could you take a look and maybe tell me why it is that way... also how would i change the Issei icon to an Asia one? Some other ppl have been asking about changing the same thing for this layout- so I opened a topic for it with some of the changes ppl ask about including this: http://myanimelist.net/forum/?topicid=1386523 There's some codes in the spoilers to add to your CSS for the two things you've asked about. I made a Asia button for All Anime, you just add the code in the spoiler to the bottom. There's also a way to raise the buttons up. You might also want to change the topbar to another kind to get more space at the top. |
May 23, 2015 6:00 PM
#171
Shishio-kun said: Kallanar said: i used the Highschool DxD layout but it is not fitting right i cant see the last icon on the left all the way and the list on the left looks overly large could you take a look and maybe tell me why it is that way... also how would i change the Issei icon to an Asia one? Some other ppl have been asking about changing the same thing for this layout- so I opened a topic for it with some of the changes ppl ask about including this: http://myanimelist.net/forum/?topicid=1386523 There's some codes in the spoilers to add to your CSS for the two things you've asked about. I made a Asia button for All Anime, you just add the code in the spoiler to the bottom. There's also a way to raise the buttons up. You might also want to change the topbar to another kind to get more space at the top. hey many thanks there bud!!! everything is looking good now even added in a few things from your other pages... so thanks again |
Jul 20, 2015 2:37 AM
#172
None of the pics are showing up in the tutorial. am I doing something wrong. |
Aug 14, 2015 10:08 AM
#173
thankyou |
Nov 26, 2015 9:55 AM
#174
How can I make the background stay put without repeating :( in the code it says no-repeat, but it's still repeating and looks awful (total newb here) |
Nov 26, 2015 11:20 AM
#175
3seren said: How can I make the background stay put without repeating :( in the code it says no-repeat, but it's still repeating and looks awful (total newb here) I don't see that problem on your list atm |
Dec 30, 2015 5:18 PM
#176
Dec 30, 2015 6:48 PM
#177
AivanK said: It is because you have added dates to the list. The original isn't designed for this and is therefor to narrow. I've got a problem with the font fomatation(?) in the completed animes list.. :( Could you help me? This should give you a decent result @import url(http://fonts.googleapis.com/css?family=Oswald:300|Crimson+Text); @import url(https://dl.dropboxusercontent.com/u/78192465/MyAnimeList/Fate/TopMenu.css); @import url(https://dl.dropboxusercontent.com/u/78192465/MyAnimeList/Fate/TabContent.css); @import url(https://dl.dropboxusercontent.com/u/78192465/MyAnimeList/Fate/CategoryMenu.css); /* HOW TO USE Use and COMPLETE this simple tutorial if you never installed CSS, it only takes a few minutes: http://myanimelist.net/forum/?topicid=200320 When you're done with the tutorial and can see the starter layout on your list, copy and paste this entire page of codes (including this part and the codes above and below) to your CSS edit box (the box titled Edit Advanced CSS File) replacing any other codes in the box. Save with the blue button at the bottom. It will put this premade layout on your list instead of the starter one from the tutorial! If the layout looks weird on your list after installing, you can try to alter your settings here. Common solutions are to set Default Status Settings to Watching or All Anime, check or uncheck tags (make sure you save afterwards): http://myanimelist.net/editprofile.php?go=listpreferences If your list still has problems you can ask us about it here, or other questions: http://myanimelist.net/forum/?topicid=200323 And you'll find further ways to customize your list here: http://myanimelist.net/forum/?topicid=419405 */ /* TOP MENU BUTTONS */ /* FOR ANIME LIST */ #mal\_cs_links div:last-of-type a:first-of-type { display: none; } /* DISABLE ANIMELIST BUTTON */ /* FOR MANGA LIST */ /* #mal\_cs_links div:last-of-type a:last-of-type { display: none; } */ /* DISABLE MANGALIST BUTTON */ body { background-image: url(http://i.imgur.com/NNolCA1.jpg); background-repeat:no-repeat; background-attachment: fixed; background-size: cover; font-family: 'Crimson Text', serif; font-size: 14px; color: #ddc38b; } a { color: #ddc38b; text-decoration: none; } #list_surround { background: url(http://i.imgur.com/8u3nHBk.png) no-repeat center 0 !important; margin: 20px auto 5px; padding: 310px 0 2px; width: 690px; } #list_surround br { display:none; } .td1, .td2 { color: ##ddc38b; background-color: rgba(0, 0, 0, .3); } .borderRBL, .borderRBL a { text-align: center !important; } .borderRBL { color: #FFFFFF !important; border-top: solid 1px #ddc38b !important; } .borderRBL small { visibility: visible !important; } tr:hover td[class^='td']:not(.borderRBL) { text-shadow: 0 0 10px #FF0; transition: all .5s ease !important; -webkit-transition: all .5s ease !important; } td[class^='td']:first-child{ width: 50px !important; } td[class^='td']:first-child { text-align: left; padding-left: 5px; border-left: double 4px #ddc38b !important; } td[class^='td']:last-child { width: 120px !important;text-align: right; padding-right: 5px; border-right: double 4px #ddc38b !important; } .animetitle + small { visibility: visible !important; text-transform: lowercase; font-size: 13px; color: #e6ca8b; margin-left: 5px; } .animetitle + small:before { content: "/ "; } /* EDIT-MORE */ #list_surround small { visibility: hidden; } #list_surround tr:hover small, #list_surround tr:hover small a { visibility: visible; } /* HEADERS */ .header_title { pointer-events: none; display: inline-block; height: 100px; } /* Headers pics */ .header_cw span, .header_completed span, .header_onhold span, .header_dropped span, .header_ptw span { position: absolute; display: inline-block; width: 730px; height: 78px; margin-left: -20px; margin-top: 22px; font-size: 0; background-image: url(http://i.imgur.com/6vn3isz.png); background-repeat: no-repeat; z-index: -1; } .header_cw span { background-position: center 0; } .header_completed span { background-position: center -78px; } .header_onhold span { background-position: center -156px; } .header_dropped span { background-position: center -234px; } .header_ptw span { background-position: center -312px; } .category_totals:before { position: absolute; display: block; content: ''; background: url(http://i.imgur.com/eTMjl9W.png) no-repeat; width: 730px; height: 78px; margin-left: -20px; margin-top: -20px; z-index: -1; } .category_totals { padding: 20px 0; color: #ddc38b; text-align: center; text-transform: lowercase !important; } #grand_totals { display:none; } .borderRBL { color: #FFFFFF !important; line-height: 1; background-color: rgba(0, 0, 0, .3) !important; } #copyright:before { display: block; content: 'Designed by Hahaido'; line-height: 1; } #copyright { color: #fff; height: 15px; padding: 100px 0; font-size: 10px; text-transform: uppercase; } #copyright a { font-size: 10px; color: #FFFFFF; } #inlineContent { display: inline !important; position: fixed; top: 0; left: 0; z-index: -1; } @keyframes sparkle { 0% { background-position: 0 0, 0 0; } 100% { background-position: -150px -300px, 150px -300px; } } @-webkit-keyframes sparkle { 0% { background-position: 0 0, 0 0; } 100% { background-position: -150px -300px, 150px -300px; } } #inlineContent:before { position: fixed; display: block; content: ''; left: 50%; bottom: 0; margin-left: -40%; width: 80%; height: 100%; background-image: url(http://i.imgur.com/sWW0xCu.png), url(http://i.imgur.com/KzNIhqF.png); border-radius: 50em; animation: sparkle 15s linear infinite; -webkit-animation: sparkle 15s linear infinite; } |
Pico-tanDec 30, 2015 7:41 PM
Jan 3, 2016 10:17 AM
#178
Hi, First of all, thank you for all the themes your work is incredible :D I recently put an Akame ga Kill theme on both my anime and manga list. My anime list is fine but the manga list doesn't have an "Anime" redirection, it keeps the "manga" one, so I can't get out of the page without changing the URL... Do you have any idea on how to change that ? :/ Edit : Could get "anime" button by activating these two : /* FOR ANIME LIST */ #mal\_cs_links div:last-of-type a:first-of-type { display: none; } /* DISABLE ANIMELIST BUTTON */ /* FOR MANGA LIST */ #mal\_cs_links div:last-of-type a:last-of-type { display: none; } */ /* DISABLE MANGALIST BUTTON */ at the same time but there's still no picture on it... |
PhypoJan 3, 2016 10:38 AM
Jan 12, 2016 8:54 AM
#179
@ Shishio-kun thank you - thanks to your forum & threads - I was able to make the cover display again as before. thanks again |
Jan 20, 2016 4:53 PM
#180
i used your premade one with the hatsune miku but all i have is black in the back how can i fix this? (i tried random things. :P) |
Jan 21, 2016 4:45 PM
#181
Otaku-Cupcake said: question: are you currently using the original codes?i used your premade one with the hatsune miku but all i have is black in the back how can i fix this? (i tried random things. :P) |
Apr 11, 2016 10:06 AM
#183
Esto es genial amigo... Esta muy chevere esto... Que buena idea |
Apr 26, 2016 3:43 PM
#184
The tags, titles, scores etc. aren't inside some box. It's making it harder to see which anime they're refering to. |
Numbuh 3, you've got to get off the couch, you cannot sit in that tree house, girl you like Rainbow Monkeys so grab your little shit and then swing! Hand tracks be tracking me to different doorways. In a maze, and I don't know what to do. Guaranteed though, Ima find the emeralds. "TURN THAT JAPANESE SHIT OFF OR I'LL PUT YOU THROUGH THE FUCKING WALL!" |
Jul 2, 2016 8:52 AM
#185
Aug 25, 2016 1:21 PM
#186
Is there a way to change the color and font of the headers (completed, watching, etc.) in modern mode? If you can, please show me pictures or something? I tried inserting the code in the modern version but nothing worked, so I don't know if it works there, as well. |
WORK IN PROGRESS ~The frog leapt forth to my lilypad memory.~ I was indoctrinated by an inamorata rabbit, Adenomata affronted. It was the verecund, dismissed creatures That I jubilated in most. This rabbit I would nurture, At the aiguille of esse, The anneal of noblesse. ❤️ Birdie ❤️ |
Sep 23, 2016 11:54 AM
#187
i was having trouble with a layout by Hahaido q.q i thought i did most of the coding right but i guess i didn't the anime and the pictures aren't showing up i wasn't sure i was allowed to comment on the other form but it's the black butler layout https://myanimelist.net/forum/?topicid=1465957 |
Mar 17, 2018 10:57 AM
#188
Ahh Thank You!! I was able to change the background image on the beginners layout, i'm so excited! Its such a small thing but for me exciting! |
Mar 21, 2018 12:20 PM
#189
beanbabe said: Ahh Thank You!! I was able to change the background image on the beginners layout, i'm so excited! Its such a small thing but for me exciting! Awesome, good job! Perfect picture lol btw I think that screenshot is from Angel's Egg. I can't believe I can remember that after like a zillion years O_o interesting anime with really pretty art, didn't appreciate it when I saw it but do now a bit more. |
Mar 21, 2018 4:04 PM
#190
Shishio-kun said: beanbabe said: Ahh Thank You!! I was able to change the background image on the beginners layout, i'm so excited! Its such a small thing but for me exciting! Awesome, good job! Perfect picture lol btw I think that screenshot is from Angel's Egg. I can't believe I can remember that after like a zillion years O_o interesting anime with really pretty art, didn't appreciate it when I saw it but do now a bit more. Yeah! It's one of my favorites;a hour of atmosphere and good imagery. It just looks gorgeous |
Jun 27, 2019 10:03 AM
#191
I have a classic layout. The problem is that I can't see the preview in my list. I updated the code, but nothing. I tried, but nothing change. :< |
Jun 27, 2019 2:35 PM
#192
iFckR said: I have a classic layout. The problem is that I can't see the preview in my list. I updated the code, but nothing. I tried, but nothing change. :< go to this tutorial https://myanimelist.net/forum/?topicid=439897 look under How to fix missing or blurry preview pictures (covers, thumbnails, etc) |
Jan 20, 2021 10:27 AM
#193
Hi Shishio-kun! I was wondering is there any way to change the color of my CSS to have it not be black? Thanks! I'll put my code down here @\import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Theme%20-%20Compressed.css"; @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelinkbefore"; @\import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Hover%20Image%20Compressed.css"; @\import "https://valeriolyndon.github.io/MAL-Public-List-Designs/Clarity%20Theme/Mod%20-%20Dark%20Mode%20Compressed.css"; body { --avatar: url(https://i.imgur.com/hRdrKcH.png); } body { --name: "mooshy\a loo"; }body { --character: none; } body { --banner: url(https://i.imgur.com/AZJE32l.jpeg); } /*-S-T-A-R-T--------------------*\ | Favourite Hearts (Left) R0.4 | \*------------------------------*/ .data.tags span{padding:0}.data.tags span a{margin:1px 0}.data.tags span a[href*="=Favorite"],.data.tags span a[href*="=Favourite"]{position:absolute;left:-34px;top:calc(50% - 13px);width:26px;height:26px;padding:0;background:var(--bg);border-radius:50%;color:#ff65ad!important;font-size:0!important;line-height:23px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.2)}.data.tags span a[href*="=Favorite"]:before,.data.tags span a[href*="=Favourite"]:before{content:"♥";font-size:26px} /*------------------------E-N-D-*/ /*-S-T-A-R-T--------------------*\ | Per-Category Banner Image | \*------------------------------*/ /* All Anime */ [data-query*='status":7'] { --banner: url(https://zippyimage.com/images/2020/10/26/8e34b19c0dab21756548d2a82ba311bd.jpg); } /* Watching/Reading */ [data-query*='status":1'] { --banner: url(https://zippyimage.com/images/2020/10/26/f0c745459538642fb1ecfd598bddfd0b.jpg); } /* Completed */ [data-query*='status":2'] { --banner: url(https://zippyimage.com/images/2020/10/26/4e8d3388c847c2d9ccef6a29be6e654b.jpg); } /* Onhold */ [data-query*='status":3'] { --banner: url(https://zippyimage.com/images/2020/10/26/f7fd4d9ba54e05e55cb27528d07a68a5.jpg); } /* Dropped */ [data-query*='status":4'] { --banner: url(https://zippyimage.com/images/2020/10/26/079218e7f50ba7ad29ca857d232e3948.jpg); } /* Planned */ [data-query*='status":6'] { --banner: url(https://zippyimage.com/images/2020/10/26/692f6464913b392283f7603bb572f910.jpg); } /*==============================*\ | Score Descriptors | \* --- - --- - ---- - --- - --- */ .score-na::before { content: "Haven't decided"; } .score-1::before { content: "Unredeemable"; } .score-2::before { content: "Horrid"; } .score-3::before { content: "Awful"; } .score-4::before { content: "Bad"; } .score-5::before { content: "Mediocre"; } .score-6::before { content: "Alright"; } .score-7::before { content: "Good"; } .score-8::before { content: "Great"; } .score-9::before { content: "Fantastic"; } .score-10::before { content: "Incredible"; } /* Internals */ .score-label { position: relative; display: inline-block; z-index: 0; transition: color 0.2s ease; } .score-label:hover { color: #fff !important; } .score-label::before { position: absolute; top: -4px; left: -8px; z-index: -1; display: block; padding: 4px 8px 4px calc(100% + 12px); background: #111; border-radius: 4px; opacity: 0; transition: opacity 0.2s ease; white-space: pre; text-align: left; pointer-events: none; } .score-label:hover::before { opacity: 1; } |
Jan 20, 2021 2:42 PM
#194
@mooshyloo ask about it here in the topic for it https://myanimelist.net/forum/?topicid=1723114 |
More topics from this board
» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )Shishio-kun - Jul 21, 2017 |
381 |
by KabukiChouNights
»»
Sep 13, 10:56 AM |
|
» theme 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 |