New
Mar 20, 2012 6:08 PM
#1
This tutorial is part of our CSS Tutorials and Add-ons section: http://myanimelist.net/forum/?topicid=419405 There's a lot of ways to customize your category link buttons (also called status menu or category menu). To make it easiest on everyone, I've split customization of the buttons into two sections- one for any level of user including beginners (put into a separate topic), and a section for experts to learn how to deep customization of the buttons. Premade category button menu codes (for all users, including beginners) If you have zero to basic CSS knowledge, or even if you're an expert, you can use and customize the premade category menu customizations in this topic: http://myanimelist.net/forum/?topicid=1327757 The menus can be installed to any layout. You can change out the images used for the buttons with your own, move them around the page, and do other customizations with the notes in the codes. I also include a short tutorial on making your own images for the buttons. Advanced coding for the category menu (advanced users only) There are literally over one hundred individual selectors related to the category menu links. Rather than list them all and try to break them down for the beginners, I'll describe the different sets and add examples to get you started. People who want to customize the category menu without using premade codes above will find these useful for their own original customization. Paste the sets below into your CSS edit box to try them out. Because its very difficult to explain, please don't use these unless you're an advanced user with experience in customizing your CSS. Basic selectors for category link buttons (add images to the buttons here) Each category button has a selector for the category link for when the category it represents is page you're on currently, and it has a selector for when its not the active page. So for example the completed category link has a selector for its link when you're on the Completed category page for your list, .status_selected a[href*="status=2"] , and it has a selector for when you're on another category page such as Currently Watching or All Anime pages, .status_not_selected a[href*="status=2"] . All Anime/Manga pages have their own category links and count as their own page, even tho they show all pages- this is the seventh selector in each set. You can add background-image: url(); to any of the codes below to add an image to that button. Put the link to the image you upload in the parenthesis. Set of combined selectors for each button These are for if you don't want to customize the active and inactive version of each button separately. The order of the buttons is Currently Watching/Reading, Completed, On-hold, Dropped, Plan to Watch/Read, All Anime/Manga. .status_selected a[href*="status=1"], .status_not_selected a[href*="status=1"]{ background-color: aquamarine; } .status_selected a[href*="status=2"], .status_not_selected a[href*="status=2"]{ background-color: violet; } .status_selected a[href*="status=3"], .status_not_selected a[href*="status=3"]{ background-color: cyan; } .status_selected a[href*="status=4"], .status_not_selected a[href*="status=4"]{ background-color: teal; } .status_selected a[href*="status=6"], .status_not_selected a[href*="status=6"]{ background-color: pink; } .status_selected a[href*="status=7"], .status_not_selected a[href*="status=7"]{ background-color: lime; } Set for category buttons when you are on their page The order of the buttons is Currently Watching/Reading, Completed, On-hold, Dropped, Plan to Watch/Read, All Anime/Manga. .status_selected a[href*="status=1"] { background-color: aquamarine; } .status_selected a[href*="status=2"] { background-color: violet; } .status_selected a[href*="status=3"] { background-color: cyan; } .status_selected a[href*="status=4"] { background-color: teal; } .status_selected a[href*="status=6"] { background-color: pink; } .status_selected a[href*="status=7"] { background-color: lime; } Set for category buttons when you're not their page The order of the buttons is Currently Watching/Reading, Completed, On-hold, Dropped, Plan to Watch/Read, All Anime/Manga. .status_not_selected a[href*="status=1"] { background-color: red; } .status_not_selected a[href*="status=2"] { background-color: silver; } .status_not_selected a[href*="status=3"] { background-color: blue; } .status_not_selected a[href*="status=4"] { background-color: orange; } .status_not_selected a[href*="status=6"] { background-color: green; } .status_not_selected a[href*="status=7"] { background-color: purple; } Before/after versions (for 2 extra selectors per button and custom text) On top of these above, you can add :before or :after part for each category button. A before or after selector make a new button along in addition to the category link's original selector. With this you can make two additional selectors for each selector above, for two extra buttons for each category link, for up to a total of 24 extra selectors. To write a before or after version, take any selector and add :before or :after to the end. You can use both for any selector. Content code is the text written in the link. The font and color of category link its based on can effect the before/after version unless you overwrite it. Example of the before version of the currently watching/reading link when you're on the currently watching/reading page: .status_selected a[href*="status=1"]:before { background-color: black; color: cyan; content: "Before Current"; height: 25px; width: 110px; top: 10px !important; left: 10px !important; padding: absolute !important; display: block; } Positioning and other coding when it doesn't take effect In order to actually change the positioning, you will need to set the positioning the selector that you added the before or after part too. So to use absolute or fixed positioning you need to set it in the original selector below. If other codes don't seem to take affect in the before or after version, then try first adding the property to the original selector. .status_selected a[href*="status=1"] { position: absolute !important; } Combine selectors for easier coding You can combine selectors into one selector to do less coding, like .status_selected a[href*="status=1"]:before, .status_not_selected a[href*="status=1"]:before. So this way you'd have the before version for the current link whether or not its the currently selected page and code them both at the same time and with the same codes. Custom text If you set the original text in the category button to transparent, and set the font color for the the before or after version to a color, then the custom text you put in the before/after version will show up on the category button if you haven't moved the before/after version away. Padding around the links In addition to all the above selectors for the links, there is padding around the link which is not clickable like the link. By adding these to the selectors for the category links (which end with "a") you can customize the padding too. They use the + version of category link selectors. You can even divide these padding codes into before and after versions, for even more extra parts for the category links. Set of padding for links .status_selected, .status_not_selected { padding: 20px; background-color: blue; } .status_selected + .status_not_selected, .status_not_selected + .status_selected, .status_not_selected + .status_not_selected { padding: 20px; background-color: cyan; } .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected { padding: 20px; background-color: purple; } .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { padding: 20px; background-color: orange; } .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { padding: 20px; background-color: red; } .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { padding: 20px; background-color: teal; } Even more specific coding for each button with "plus" version of selectors Using the + system above, you can customize the buttons for individual category link even more so. Individual selector set .status_selected a{background-color: red;} .status_not_selected a{background-color: blue;} .status_selected + .status_not_selected a{background-color: green;} .status_not_selected + .status_selected a{background-color: orange;} .status_not_selected + .status_not_selected a{background-color: yellow;} .status_selected + .status_not_selected + .status_not_selected a{background-color: purple;} .status_not_selected + .status_selected + .status_not_selected a{background-color: lime;} .status_not_selected + .status_not_selected + .status_selected a{background-color: cyan;} .status_not_selected + .status_not_selected + .status_not_selected a{background-color: magenta;} .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: maroon;} .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a{background-color: brown ;} .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a{background-color: violet;} .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a{background-color: turquoise;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: silver;} .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: pink;} .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: black;} .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a{background-color: aquamarine;} .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a{background-color: teal;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a{background-color: violet;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: red;} .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: navy;} .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: orange;} .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: silver;} .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a{background-color: blue;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a{background-color: purple;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a{background-color: orange;} .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{background-color: lime;} |
Shishio-kunApr 9, 2016 4:43 PM
Reply Disabled for Non-Club Members
Mar 21, 2012 6:41 AM
#2
Here's CSS3-way to do this thing: #list_surround table:first-of-type td:nth-of-type(1){background: cyan;} #list_surround table:first-of-type td:nth-of-type(2){background: blue;} #list_surround table:first-of-type td:nth-of-type(3){background: purple;} #list_surround table:first-of-type td:nth-of-type(4){background: green;} #list_surround table:first-of-type td:nth-of-type(5){background: magenta;} #list_surround table:first-of-type td:nth-of-type(6){background: tan;} The code is much shorter, obvious and easier to type manually and to maintain as well. How it works: Using #list_surround table:first-of-type we select the first table that is located in #list_surround or any sub-element of it, but it works only with navigation links since there are no tables within anything under #list_surround. The 'true' way to select it would be #list_surround > table:first-of-type, but mal css parser screws this code although it is standard-compliant. Then by using td:nth-of-type(x) we select xth cell on this collumn. Simple as that! Note that the first one and the last one can also be targeted by td:first-of-type and td:last-of-type, but I'll let it be like that for aesthetic reasons. I hadn't put comments denoting what selector targets what cell, because it actually depends on what sections you have enabled for your anime list, it would be nth from the left (hope you know how to count to six haha) The drawback is that it its not supported by teh old browsers (most notably being IE, only 9 and above versions of which support it, the other browsers support it starting from: Chrome 1.0+, Opera 9.6+, Safari 3.1+, Firefox 3.6+) |
![]() |
Apr 30, 2012 12:26 PM
#3
Apr 30, 2012 7:08 PM
#4
Lelouch_X said: Is there some way to lessen the gap between my category links and the table? All the time when i want to use padding both elements move and i just want to have the category links moving more to the bottom. Screenshot in Spoiler: ![]() Hope someone can help me. Discard your old links codes, and use this: /* CURRENTLY WATCHING/READING LINK AREA */ .status_selected, .status_not_selected { position: absolute; margin-top: 215px; left:0px; } /* COMPLETED LINK AREA */ .status_selected + .status_not_selected, .status_not_selected + .status_selected, .status_not_selected + .status_not_selected { position: absolute; margin-top:215px !important; left:180px; } /* ON HOLD LINK AREA */ .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected { position: absolute; margin-top:215px; left: 280px; } /* DROPPED LINK AREA */ .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { position: absolute; margin-top:215px; left: 370px; } /* PLANNED LINK AREA */ .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { position: absolute; margin-top:215px; left: 460px; } /* ALL ANIME/MANGA LINK AREA */ .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { position: absolute; margin-top:215px; left: 570px } |
Sep 1, 2012 7:26 AM
#6
how can i eliminate the spaces between the category links? http://myanimelist.net/animelist/uwinaako here is the code: /* CURRENTLY WATCHING/READING LINK */ .status_selected a, .status_not_selected a { padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin:; margin-top: 0px; left: ; right: ; top: ; bottom: 0px; } /* COMPLETED LINK */ .status_selected + .status_not_selected a, .status_not_selected + .status_selected a, .status_not_selected + .status_not_selected a{ padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin-top: 0px; margin:; left: ; right: ; top: ; bottom: 0px; } /* ON HOLD LINK */ .status_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_selected a, .status_not_selected + .status_not_selected + .status_not_selected a{ padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin: ; margin-top: 0px; left: ; right: ; top: ; bottom: 0px; } /* DROPPED LINK */ .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{ padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin:; margin-top: 0px; left: ; right: ; top: ; bottom: 0px; } /* PLANNED LINK */ .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{ padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin: ; margin-top: 0px; left: ; right: ; top: ; bottom: 0px; } /* ALL ANIME/MANGA LINK */ .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a, .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a{ padding-right: ; padding-top: ; padding-bottom: ; position: fixed; margin: ; margin-top: 0px; left: ; right: ; top: ; bottom: 0px; } |
Sep 1, 2012 11:38 AM
#7
uwinaako said: how can i eliminate the spaces between the category links? http://myanimelist.net/animelist/uwinaako you mean, to see the menu category like this: ![]() to do this, delete all the code you put in the spoiler, and add: div > table:first-of-type { bottom: 0px; left: 50%; margin-left: -459px; position: fixed; } also change this code, is arround line 200: .status_not_selected, .status_selected { border: 0px none currentColor !important; display: inline-block; height: auto !important; padding: 0px !important; text-align: center !important; width: 153px; } |
al_exsSep 1, 2012 6:09 PM
Sep 1, 2012 6:10 PM
#8
al_exs said: uwinaako said: how can i eliminate the spaces between the category links? http://myanimelist.net/animelist/uwinaako you mean, to see the menu category like this: ![]() to do this, delete all the code you put in the spoiler, and add: div > table:first-of-type { bottom: 0px; left: 50%; margin-left: -459px; position: fixed; } also change this code, is arround line 200: .status_not_selected, .status_selected { border: 0px none currentColor !important; display: inline-block; height: auto !important; padding: 0px !important; text-align: center !important; width: 153px; } this works but it's not fixing in the bottom. |
Sep 1, 2012 7:50 PM
#9
@uwinaako For this part: div > table:first-of-type { you'll probably have to use @import, because MAL used to discard '<'s and probably it still is. If you remove it, then what shows up when you click 'more' near anime title will be f*cked.bottom: 0px; left: 50%; margin-left: -459px; position: fixed; } |
![]() |
Sep 1, 2012 8:03 PM
#10
i overwrite the original code with that one but it fixed this part http://i47.tinypic.com/2elvw2c.jpg instead of fixing the category links in the bottom. i'll try that import thing later. |
Sep 1, 2012 8:42 PM
#11
Oh, yeah, I forgot that... MAL CSS box for me is just to import :/ |
May 25, 2014 4:15 PM
#12
It would be easier to use ".status_selected:nth-of-type(b)" and ".status_not_selected:nth-of-type(b)" instead of the long old codes. It can still be combined with "a" this way ".status_selected:nth-of-type(b) a" and ".status_not_selected:nth-of-type(b) a", and since it can also be combined with "::after", "::before", ":active" and ":hover" it gives more flexibility than the old code. /* Currently Watching/Reading */ .status_selected:nth-of-type(1), .status_not_selected:nth-of-type(1) { ... } /* Completed */ .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) { ... } /* On-hold */ .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) { ... } /* Dropped */ .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) { ... } /* Plan to Watch/Read */ .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) { ... } /* All Anime/Manga */ .status_selected:nth-of-type(6), .status_not_selected:nth-of-type(6) { ... } Also it would make the code cleaner since this way one can put all the common settings under ".status_selected" and ".status_not_selected" just leaving the minor adjustments to be made using the specific codes above. I made am example of this using the code Shishio posted 1st post. /* CATEGORY LINKS SHARED SETTINGS */ .status_selected, .status_not_selected { padding-right: #px; padding-top: #px; padding-bottom: #px; position: absolute; margin: #px; margin-top: 0px; right: #px; top: #px; bottom: #px; } /* CURRENTLY WATCHING/READING LINK AREA */ .status_selected:nth-of-type(1), .status_not_selected:nth-of-type(1) { background: url(none) repeat scroll 0 0 magenta !important; left: 0px; } /* COMPLETED LINK AREA */ .status_selected:nth-of-type(2), .status_not_selected:nth-of-type(2) { background: url(none) repeat scroll 0 0 blue !important; left: 180px; } /* ON HOLD LINK AREA */ .status_selected:nth-of-type(3), .status_not_selected:nth-of-type(3) { background: url(none) repeat scroll 0 0 orange !important; left: 280px; } /* DROPPED LINK AREA */ .status_selected:nth-of-type(4), .status_not_selected:nth-of-type(4) { background: url(none) repeat scroll 0 0 green !important; left: 370px; } /* PLANNED LINK AREA */ .status_selected:nth-of-type(5), .status_not_selected:nth-of-type(5) { background: url(none) repeat scroll 0 0 gold !important; left: 460px; } /* ALL ANIME/MANGA LINK AREA */ .status_selected:nth-of-type(6), .status_not_selected:nth-of-type(6) { background: url(none) repeat scroll 0 0 brown !important; left: 570px; } |
Jul 18, 2014 6:11 PM
#13
Is there a way to remove the links completely? Sorry if it is obvious... |
Jul 18, 2014 9:27 PM
#14
Igneel_Grandine said: Is there a way to remove the links completely? Sorry if it is obvious... There is a giant bold text that says "Removing a link", did you try that? |
Sep 5, 2014 5:14 PM
#15
How would I go about changing the default category from "all anime" to "currently watching" so that whenever I open my list it shows the currently watching category instead of the all anime one? |
Sep 5, 2014 10:58 PM
#16
AYtheguy17 said: How would I go about changing the default category from "all anime" to "currently watching" so that whenever I open my list it shows the currently watching category instead of the all anime one? go HERE and change "default status selected" |
Sep 6, 2014 8:34 PM
#17
Thanks! |
Nov 8, 2014 2:24 PM
#18
Hmm sorry but I don't understand how to remove one of the link. Even if I input the code : /* CURRENTLY WATCHING/READING LINK AREA */ .status_selected a, .status_not_selected a { display: none; } , it doesn't remove the currently watching link, and I don't know how that works ^^". I would like to remove the Dropped link area, thanks in advance. |
Nov 8, 2014 5:24 PM
#19
Agonie-Latente said: Hmm sorry but I don't understand how to remove one of the link. Even if I input the code : /* CURRENTLY WATCHING/READING LINK AREA */ .status_selected a, .status_not_selected a { display: none; } , it doesn't remove the currently watching link, and I don't know how that works ^^". I would like to remove the Dropped link area, thanks in advance. This topic is really outdated now so its not so reliable- you can use this for dropped link removal .status_not_selected:nth-of-type(4), .status_selected:nth-of-type(4){ display: none !important; } |
Nov 9, 2014 1:34 PM
#20
Dec 21, 2014 12:42 PM
#21
This topic has been updated a lot. If you know of anything I can add let me know here so I can consider how to add it. The linked topic on pre-made category menus will get finished later. |
Reply Disabled for Non-Club Members
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 |