New
Jun 1, 2016 3:55 PM
#3851
Doomcat55 said: @522Gage Yeah, add: .animetitle { white-space: nowrap; overflow: hidden; display: inline-block; max-width: 400px; text-overflow: ellipsis; } I meant more along the lines of this: https://gyazo.com/206afb80dc332c82280396f8cd13635d What you said puts an ellipses when it cuts off the end of the name. I still want to be able to see the whole name. Also, sorry to ask so many questions but is there a way to get rid of the 'Edit-' thing on the list? |
Jun 1, 2016 5:26 PM
#3852
BurntJelly said: akai_ryu said: 1- How could I move the category buttons to the left? .status-menu-container .status-menu{margin:0;} akai_ryu said: 2- How could I put round corners on the table? .list-table{display:block;} .list-table tbody:first-child{display:block; border-radius:10px;} Thanks a lot! Yeah, I'll fix them later. |
Jun 1, 2016 7:24 PM
#3853
522Gage said: I don't get it - do you want the name to be cut off or do you want to see the whole thing? And yes, add:Doomcat55 said: @522Gage Yeah, add: .animetitle { white-space: nowrap; overflow: hidden; display: inline-block; max-width: 400px; text-overflow: ellipsis; } I meant more along the lines of this: https://gyazo.com/206afb80dc332c82280396f8cd13635d What you said puts an ellipses when it cuts off the end of the name. I still want to be able to see the whole name. Also, sorry to ask so many questions but is there a way to get rid of the 'Edit-' thing on the list? [class^="td"]:nth-child(-n+2) [style="float: right;"] { display: none; } |
Jun 2, 2016 11:43 AM
#3854
Doomcat55 said: 522Gage said: I don't get it - do you want the name to be cut off or do you want to see the whole thing? And yes, add:Doomcat55 said: @522Gage Yeah, add: .animetitle { white-space: nowrap; overflow: hidden; display: inline-block; max-width: 400px; text-overflow: ellipsis; } I meant more along the lines of this: https://gyazo.com/206afb80dc332c82280396f8cd13635d What you said puts an ellipses when it cuts off the end of the name. I still want to be able to see the whole name. Also, sorry to ask so many questions but is there a way to get rid of the 'Edit-' thing on the list? [class^="td"]:nth-child(-n+2) [style="float: right;"] { display: none; } Thanks, I got it figured out now. Thank you for helping me out so much! |
Jun 5, 2016 7:48 AM
#3855
I want to rotate the menu bar and put it in the top of the page, but I have no idea how to modify the menu transition: Maybe someone can help me. Thanks. |
Jun 23, 2016 7:58 AM
#3856
I'm not sure what is wrong with my layout but if I write a long paragraph in the tags section it would just eat up words and display partial of the text. Here is currently the longest paragraph the layout can display without losing any text http://puu.sh/pD3ky.jpg Here is what happens if the text is long http://puu.sh/pD827.jpg Somehow the tags section in my layout only allows ~250 characters (~40 words) |
Jun 26, 2016 10:58 AM
#3857
First of all i apologize if this is no the right place to post this Now i found a layout i wanted to use for my AnimeList and it worked fine, here is the css for the layout i used ( https://2417bc822d5a1a1c0611cf272de2c2bba8f1ceda.googledrive.com/host/0Bwdzx21-2YyneGJMUldmUVljSVk/dxd.css ) Than i found a thread in the forums which had a way to allow your background to change with every category , here is the topic ( http://myanimelist.net/forum/?topicid=544301 ) I tried following the instructions but i encountered many problems when combining the CSSs to get a changing background. Anyone have an idea how to combine the two CSSs and get the wanted result ? ( i am a begginer in css ) Thanks in advance. |
Jul 3, 2016 2:08 AM
#3858
Is there a CSS to make the list slightly transparent without changing anything else? Compare the first picture to the second one: http://imgur.com/a/fQtJZ I'm referring the the red parts in the second picture. Of course, I don't want the text transparent. Also, it doesn't need to be exact. I would be happy if any of those areas can be a bit transparent. |
Jul 3, 2016 9:24 AM
#3859
Jul 4, 2016 3:40 AM
#3860
Help with making background image So the problem I have is that i want the background image to slowly change as I scroll down, so to do that I combined two images vertically so if the background were to scroll down it would have many different images. But then the background is replaced with nothing after the last picture. Is there a way to prevent the background from scrolling after the image has ended or slowing down the rate at which it scroll to reach the bottom together with the list? Thanks for your help this is my list with the problem http://myanimelist.net/animelist/gruuvy scroll down and see the black nothingness |
Jul 9, 2016 6:14 PM
#3861
Hi! I'm sorry if this question was already asked, but is there a way to add Premiered and Studios columns on classic style? Maybe by using a CSS trick...? Thank you. |
Jul 9, 2016 6:38 PM
#3862
Gruuvy said: Help with making background image So the problem I have is that i want the background image to slowly change as I scroll down, so to do that I combined two images vertically so if the background were to scroll down it would have many different images. But then the background is replaced with nothing after the last picture. Is there a way to prevent the background from scrolling after the image has ended or slowing down the rate at which it scroll to reach the bottom together with the list? Thanks for your help this is my list with the problem http://myanimelist.net/animelist/gruuvy scroll down and see the black nothingness Add the red line of code to your body body { background-image: url(http://i65.tinypic.com/2a28a0.png); background-attachment: local ; background-position: ; background-size: cover ; background-repeat: repeat-y !important; } Adrenaline67 said: Hi! I'm sorry if this question was already asked, but is there a way to add Premiered and Studios columns on classic style? Maybe by using a CSS trick...? Thank you. I don't think classic list supports this (there's no data on premiered/studios for the classic layout, you can't css something that doesn't exist). The best you can do is using tags column to fill out premiered/studios. You can change the title header from "tags" to "premiered/studios". |
Jul 9, 2016 6:52 PM
#3863
@Adrenaline67 If you're willing to put some effort into it, there's actually a generator for this kind of stuff that BurntJelly made a while back: http://burntjello.webs.com/m/MyAnimeListTools/ It might be a little complicated to figure out how to use, but it works in the same way as a cover generator: give it a template, save the CSS it gives you, and import it into your list. If you're not sure what template/selector to use, Google "CSS :before :after" and that should give you an idea. |
Jul 9, 2016 6:57 PM
#3864
Oh that's what I feared, what a pity :( Thank you anyway for you answer. =) @Doomcat55 I'll give it a try thx! |
Jul 11, 2016 6:19 AM
#3865
Takana_no_Hana said: Add the red line of code to your body body { background-image: url(http://i65.tinypic.com/2a28a0.png); background-attachment: local ; background-position: ; background-size: cover ; background-repeat: repeat-y !important; } Thanks for your help but what I meant was to make the background not repeat at all, but still end up only reaching the bottom at the same time the list does |
Jul 12, 2016 12:07 AM
#3866
Hi, I've been recently working on my Anime & Manga list design today. I've got it mostly sorted out so far thanks to @Shishio-kun's tutorial here: https://www.youtube.com/watch?v=jFTiAG_QEAE. However, what I've been realising the text is unreadable as I used the default blue and white modern theme and I'm wondering what's a good colour to match the background? My anime list: http://myanimelist.net/animelist/PhantomHuntress Here's the CSS code I used, just changed it around a bit to look nicer: body{ background-size: cover !important; background-attachment: fixed !important; } .list-table > tbody:nth-of-type(2n+1), .list-table, .list-container, .list-table .list-table-header .header-title{ background-color: transparent !important; border: 0 transparent solid !important; } .list-table .list-table-data .data{ border: 0 transparent solid !important; } .status-menu-container{ background-color: rgba(76,0,153,.8) !important; } .cover-block { padding-left: 17px; padding-right: 17px; } Also I tried using the code from the Original CSS such as colour, text align and font family to change the list but it didn't work. Any reason why? Please note I'm a beginner at graphics design but I do have a basic understanding of CSS. |
PhantomHuntressJul 12, 2016 12:11 AM
Jul 15, 2016 9:39 AM
#3867
Hello! I was redirected here from another forum post, though I've actually been here quite a few times already. My experience with HTML is limited to light editing on tumblr themes, so I'm a little lost. My current list is the default. What part of the css controls the status bar style and the stats/status info directly above and below the list? Status selected/not selected/table has no effect in easy edit mode, and I've tried to change different parts in the css code, but nothing seems to work. I feel like the solution is actually really simple and I'm just not getting it. |
TheyLeaveShadowsJul 15, 2016 9:52 AM
Jul 15, 2016 10:38 AM
#3868
@TheyLeaveShadows You should check out this thread; it covers using Inspect Element to find selectors and there are color-mapped layouts so you can see which selector references which element on the page. |
Jul 15, 2016 2:07 PM
#3869
@Doomcat55 That's what I did before, and it's really good advice! Thank you! The real problem was a bug(?) from easy list editing. Parentheses were missing around the opacity value under both status selected brackets, and it took me a long time to realize it. At first, I thought it was my own fault, but since it was code copied directly from the default on my list before I started to mess around with the CSS, I'm pretty sure it's a bug. Is it worth reporting, on that note? |
Jul 16, 2016 3:53 AM
#3870
hiya! well im not the best at the whole coding thing but i've recently have seen blog posts like this (http://myanimelist.net/blog.php?eid=783648) for organizing characters and i really wanna do something similar so i add additional characters and series i enjoy, but as i said before im terrible at the whole editing thing so i need a few tips! should i use separate images, or one big image? are there any tools ya'll recommend for making everything look nice? i know this is probably the dumbest question but im clueless and everyone here seems so good at things eek! thank u! x |
Jul 16, 2016 6:54 PM
#3871
Lunoire said: Check out this thread, it has links to free image editing software. I recommend Photoshop because it's extremely popular and easy to find tutorials for, though any of the programs listed there should suit your needs.are there any tools ya'll recommend for making everything look nice? Lunoire said: It really depends on what you find easier, though if all of your images are going to be similarly sized/shaped like the ones in the blog post you linked, you should probably use separate images - it'll make it easier to rearrange/edit them individually. (Keep in mind that you can create a bunch of separate images and then combine them later if you change your mind.)should i use separate images, or one big image? Lunoire said: Not at all, everyone here had to start from scratch at some point as well ;) Feel free to ask if you need more help.i know this is probably the dumbest question but im clueless and everyone here seems so good at things eek! thank u! x |
Jul 17, 2016 7:57 AM
#3873
Hello ! I have been working on my list design recently and for the first time it was with the new modern design and it is currently giving me a hard time. So I am trying to make a scrollable list inside a div which is fixed on the screen. I managed to do it but now it prevents the page from loading more entries when scrolling to the end. Below is a screenshot of the problem (you can try it live here : My list): As you can see the scroll bar is at the very bottom but nothing happen (I have 400+ entries). The blue rectangle is the loading bar but the spinner is not showing. Does anyone know how the loading is triggered by the page, and how I can fix it for my list ? Thank you in advance ! |
Jul 17, 2016 9:31 AM
#3874
Hi, can someone help me... I didn't check my MAL for long time and I just realized that my list are little broken... I mean background from list dissapeared (it was simple black, little transparent). From what I think, it's just file missing from someone's dropbox, but I have no idea where original script was and who it was :/ maybe someone had similar theme. It wasn't changed much @import "http://fonts.googleapis.com/css?family=Varela+Round"; @import "http://fonts.googleapis.com/css?family=Margarine"; @import url(http://storage.live.com/items/4A07C1EEED420167%21162); body { background-attachment: fixed; background-image: url("https://dl.dropboxusercontent.com/u/55985962/fora/MAL/wallpaperM1.jpg"); background-size: cover; } body { background-position: 0px 1%; } .table_header { background-image: url("https://dl.dropbox.com/u/57348187/MAL/PROZ.png"); } .animetitle, .animetitle:visited { color: white; font-family: 'calibri',sans-serif; font-size: 14px; text-shadow: 0 2px 1px #000000; } .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color: white; font-family: 'calibri',sans-serif; font-size: 12px; text-shadow: 0 2px 1px #000000; } #list_surround { width: 720px; } #list_surround { position: absolute !important; left: 50px !important;} #list_surround { margin: inherit !important; } #list_surround { position: absolute !important; top: -40px;} body { background-color: #FBFDE8; background-repeat: no-repeat; } #list_surround { background-image: url(""); left: 2px; position: absolute; } a { text-decoration: none; } a:visited { text-decoration: none; } a:hover, a:visited:hover { color: #D3D3D3; text-decoration: underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image: url("https://dl.dropbox.com/u/57348187/MAL/PROZ.png"); border-width: 0; padding: 2px; } .category_totals:hover, .td1:hover, .td2:hover, #grand_totals:hover, #copyright:hover { background-image: url("https://dl.dropbox.com/u/57348187/MAL/PROZ2.png"); border-width: 0; padding: 2px; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } .status_selected { background-color: black; color: white; display: none; padding: 2px; text-decoration: blink; } .status_not_selected { background-color: black; color: white; display: none; padding: 2px; } .status_selected a { color: blue; display: none; } .status_not_selected a { color: white; display: none; } .thickbox { color: cyan; font-family: 'Happy Monkey',cursive; font-size: 12px; text-shadow: 2px 2px 2px #000000; } .table_header { border-width: 0; font-weight: bold; padding: 2px; } .category_totals { height: 30px; text-align: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; } #copyright, #grand_totals { margin: 0 auto; text-align: center; border-radius: 20px; } .header_cw, .header_completed, .header_onhold, .header_dropped, .header_ptw { height: 282px; background-position: center top; background-repeat: no-repeat; } /* Manga List only CURRENTLY WATCHING/READING HEADER This is the header above currently watching/reading. Increase the height if your image doesn't fit the header. Lower the margin-bottom below zero to move it behind the list. */ .header_cw { background-image:url(http://i751.photobucket.com/albums/xx160/alextasha/MAL/manga/manga-reading_zpse41cdf53.png); } /* COMPLETED HEADER This is the header above completed animes and manga. Increase the height if your image doesn't fit the header. Lower the margin-bottom below zero to move it behind the list. */ .header_completed { background-image:url(http://i751.photobucket.com/albums/xx160/alextasha/MAL/manga/manga-completed_zpsadaedad2.png); } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the height if your image doesn't fit the header. Lower the margin-bottom below zero to move it behind the list. */ .header_onhold { background-image:url(http://i751.photobucket.com/albums/xx160/alextasha/MAL/manga/hanayamata_zpsdd53c8dc.png); } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the height if your image doesn't fit the header. Lower the margin-bottom below zero to move it behind the list. */ .header_dropped { background-image:url(http://i751.photobucket.com/albums/xx160/alextasha/MAL/manga/manga-onhold_zpsd6ddacbd.png); } /* PLAN TO WATCH/READ HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the height if your image doesn't fit the header. Lower the margin-bottom below zero to move it behind the list. */ .header_ptw { background-image:url(http://i751.photobucket.com/albums/xx160/alextasha/MAL/manga/manga-plan_zps5348ac34.png); } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { margin-top: 250px; height: 32px; padding: 2px; color: white; font-family: 'calibri',cursive; font-size: 26px; text-align: center; text-shadow: 3px 3px 3px #000000; border-radius: 20px 20px 0 0; background-color: transparent; background-image: url("https://dl.dropbox.com/u/57348187/MAL/PROZ.png"); } body #mal\_cs\_listinfo, body #mal\_cs\_links, body #mal\_cs\_otherlinks, body #mal\_cs\_powered { -moz-box-sizing: border-box; -moz-transition: all 0.4s ease 0s; background: none no-repeat scroll 100% 0 transparent; border: 0 none; height: 0 !important; overflow: hidden; position: absolute; right: 4px; text-align: center; top: 4px; width: 150px; z-index: 10; } body #mal\_cs\_listinfo:hover, body #mal\_cs\_links:hover, body #mal\_cs\_otherlinks:hover, body #mal\_cs\_powered:hover { height: 200px !important; padding-top: 32px; width: 150px; } body #mal\_cs\_listinfo div, body #mal\_cs\_links div, body #mal\_cs\_otherlinks div, body #mal\_cs\_powered div, body #mal\_cs\_powered dd { -moz-transition: opacity 0.4s ease-in-out 0s; background-color: rgba(255, 255, 255, 0.6); border-radius: 3px 0 0 0; font-size: 0 !important; line-height: 0; margin: 0 !important; opacity: 0; padding: 8px 0 0; } body #mal\_cs\_listinfo:hover div, body #mal\_cs\_links:hover div, body #mal\_cs\_otherlinks:hover div, body #mal\_cs\_powered:hover div, body #mal\_cs\_powered:hover dd { opacity: 1; } body #mal\_cs\_listinfo div:nth-of-type(2), body #mal\_cs\_links div:nth-of-type(2), body #mal\_cs\_otherlinks div:nth-of-type(2), body #mal\_cs\_powered div:nth-of-type(2) { border-radius: 0 0 3px 3px; padding: 4px 0 8px; } body #mal\_cs\_listinfo a, body #mal\_cs\_links a, body #mal\_cs\_otherlinks a, body #mal\_cs\_powered a { background-color: rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; font: 13px/17px arial,sans-serif; margin: 4px 12px 0; padding: 3px 0; text-decoration: none; } body #mal\_cs\_listinfo a:nth-of-type(1), body #mal\_cs\_links a:nth-of-type(1), body #mal\_cs\_otherlinks a:nth-of-type(1), body #mal\_cs\_powered a:nth-of-type(1) { margin-top: 0; } body #mal\_cs\_listinfo a:hover, body #mal\_cs\_links a:hover, body #mal\_cs\_otherlinks a:hover, body #mal\_cs\_powered a:hover { background-color: #403C5A; } body #mal\_cs\_listinfo strong a strong { font-weight: normal; } body #mal\_cs\_otherlinks strong { color: #333333; display: block; font: bold 13px/17px arial,sans-serif !important; padding: 0 4px 4px; text-shadow: 0 1px 1px #FFFFFF; } body #mal\_cs\_otherlinks strong a { background: none repeat scroll 0 0 transparent; border-radius: 0 0 0 0; color: #333333; display: inline; font: bold 13px/17px arial,sans-serif !important; margin: 0; padding: 0; text-shadow: 0 1px 1px #FFFFFF; } body #mal\_cs\_powered a { background-color: rgba(255, 255, 255, 0.6) !important; border-radius: 3px 0 0 0 !important; display: block !important; margin: 0 !important; opacity: 0; padding: 8px 0 0 !important; } body #mal\_cs\_powered:hover a { opacity: 1; } body #mal\_cs\_powered a img { background: url("http://invise.s3.amazonaws.com/mal/mal.png") no-repeat scroll 50% 6px rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; height: 0; margin: 0 12px; padding: 23px 0 0 126px; width: 0; } body #mal\_cs\_powered a img:hover { background-color: #403C5A; } body #mal\_cs\_powered #search { border-radius: 0 0 3px 3px; padding: 8px; position: relative; } body #mal\_cs\_powered #search #searchBox { -moz-box-sizing: border-box; border-color: #BCBCBC #D6D6D6 #D6D6D6; border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #333333; display: inline-block; font-family: arial,sans-serif; font-size: 13px; height: 28px; padding-left: 6px; padding-right: 24px; vertical-align: top; width: 100%; } body #mal\_cs\_powered #search #searchBox:hover, body #mal\_cs\_powered #search #searchBox:focus { border-color: #ACACAC #C6C6C6 #C6C6C6; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; } body #mal\_cs\_powered #search #searchListButton { background: url("http://invise.s3.amazonaws.com/mal/icon-go.png") no-repeat scroll 0 0 transparent; border-radius: 3px 3px 3px 3px; height: 0; margin: 0; padding: 16px 0 0 16px; position: absolute; right: 12px; top: 14px; width: 0; } body #mal\_cs\_listinfo { background-image: url("http://invise.s3.amazonaws.com/mal/icon1.png"); right: 106px; } body #mal\_cs\_listinfo:hover { background-image: url("http://invise.s3.amazonaws.com/mal/icon1-over.png"); } body #mal\_cs\_links { background-image: url("http://invise.s3.amazonaws.com/mal/icon2.png"); right: 72px; z-index: 9; } body #mal\_cs\_links:hover { background-image: url("http://invise.s3.amazonaws.com/mal/icon2-over.png"); } body #mal\_cs\_otherlinks { background-image: url("http://invise.s3.amazonaws.com/mal/icon3.png"); right: 38px; z-index: 8; } body #mal\_cs\_otherlinks:hover { background-image: url("http://invise.s3.amazonaws.com/mal/icon3-over.png"); } body #mal\_cs\_powered { background-image: url("http://invise.s3.amazonaws.com/mal/icon4.png"); right: 4px; z-index: 7; } body #mal\_cs\_powered:hover { background-image: url("http://invise.s3.amazonaws.com/mal/icon4-over.png"); } #mal\_control\_strip { position: fixed !important; } td#mal\_cs\_pic a img { display: none; } #mal\_cs\_pic, #mal\_cs\_listinfo, #mal\_cs\_links { border-right: 0 none !important; } body #mal\_cs\_listinfo, body #mal\_cs\_links, body #mal\_cs\_otherlinks, body #mal\_cs\_powered { padding: 32px 0 0; } manga and anime list were based on the same script. Differences are only pictures and table position :/ |
AlextashaJul 17, 2016 12:14 PM
Jul 17, 2016 10:09 AM
#3875
Cateinya said: I'd like to know how too. I did that for my first modern list design and realized that it only loads my complete list if I use a mobile browser (any browser works) to view it. However, it doesn't load if I use browsers on computers to view it.Hello ! I have been working on my list design recently and for the first time it was with the new modern design and it is currently giving me a hard time. So I am trying to make a scrollable list inside a div which is fixed on the screen. I managed to do it but now it prevents the page from loading more entries when scrolling to the end. Below is a screenshot of the problem (you can try it live here : My list): As you can see the scroll bar is at the very bottom but nothing happen (I have 400+ entries). The blue rectangle is the loading bar but the spinner is not showing. Does anyone know how the loading is triggered by the page, and how I can fix it for my list ? Thank you in advance ! |
Jul 17, 2016 11:27 AM
#3876
Cateinya said: Hello ! I have been working on my list design recently and for the first time it was with the new modern design and it is currently giving me a hard time. So I am trying to make a scrollable list inside a div which is fixed on the screen. I managed to do it but now it prevents the page from loading more entries when scrolling to the end. Below is a screenshot of the problem (you can try it live here : My list): As you can see the scroll bar is at the very bottom but nothing happen (I have 400+ entries). The blue rectangle is the loading bar but the spinner is not showing. Does anyone know how the loading is triggered by the page, and how I can fix it for my list ? Thank you in advance ! I assume this is because mal only loads 300 entries at a time? Mine works fine for now but I have <300. Will probably run into this eventually but have no idea how to fix it :/ |
Jul 17, 2016 2:40 PM
#3877
@Cateinya Annoyingly I can't actually test this out because my list doesn't have 300 entries, but I'll try to give it a shot. These codes are probably messing with the browser's perception of when you've reached the "end" of your list (removed some extra stuff): .list-block { height: 550px; } .list-unit { height: 100%; overflow-x: hidden; overflow-y: auto; } .list-block { height: 550px; overflow-y: scroll; } |
Jul 18, 2016 2:40 AM
#3878
@Doomcat55 Since it was you who figured out how to add headers figured I'd ask. I currently have letter spacing on hover over the headers, is there a way to trigger the spacing when hovering over the list instead of the header? Like hovering over something under Watching makes the watching header space out, etc. Thanks either way. |
Jul 18, 2016 4:09 AM
#3879
I havent had trouble in the past but for some reason it wont update when I press save. Maybe I'm missing something obvious, maybe I have been up for 26 hours. Idk. My current layout: https://gyazo.com/88e3254f386fbd1ce81fab8032075898 The layout that should work but doesn't: https://gyazo.com/c4c860d2063fc652451d90e90e042cf6 Basically I press save and nothing changes. Any help is appreciated. |
Jul 18, 2016 5:05 AM
#3880
Danemj3 said: I havent had trouble in the past but for some reason it wont update when I press save. Maybe I'm missing something obvious, maybe I have been up for 26 hours. Idk. My current layout: https://gyazo.com/88e3254f386fbd1ce81fab8032075898 The layout that should work but doesn't: https://gyazo.com/c4c860d2063fc652451d90e90e042cf6 Basically I press save and nothing changes. Any help is appreciated. Are you sure you have the right one selected? http://myanimelist.net/ownlist/style |
Jul 18, 2016 6:47 AM
#3881
(@Bunnie so you can see what I found) patch517 said: I assume this is because mal only loads 300 entries at a time? Mine works fine for now but I have <300. Will probably run into this eventually but have no idea how to fix it :/ The 300 first entries are loaded directly when loading the page. After scrolling down the 300 entries, it loads another 300 ... etc until there is no more to see. It is this 2nd loading that does not work for me. @Doomcat55 I tried with your solution but it did not work either. Maybe I'm forgetting something in my modifications... I made some more research : It seems like this loading is processed by a javascript function which is triggered when scrolling in the <body> (On each standard list you can see that there is a scrolling bar, event for empty list. Try reducing the list size to make it disapear and you can no longer see the loading bar appear). Maybe there ar more conditions like the loading bar div must be visible on the screen for the function to be triggered, but I did not search further since that fact alone is incompatible with my design intentions. So I found an alternative : I just let the body act as default (scrolling bar for the whole content), but I hide some parts of it by making the background appear in front of it, using pseudo element as in this tutorial : https://css-tricks.com/body-border/ In my case I hide the top and the bottom of the list so it looks like there is only a small part of the body which is visible and changes when scrolling. Then to make sure elements like the menu appear in front of the "background" I added, I just need to play with the stack order (z-index and others, but that 's another story). I hope you understand my explanations, I will apply this to my list later so you may see it in action. |
Jul 18, 2016 10:08 AM
#3882
patch517 said: No. CSS doesn't go "backwards," i.e. you can't style an element based on elements that come later in the HTML@Doomcat55 Since it was you who figured out how to add headers figured I'd ask. I currently have letter spacing on hover over the headers, is there a way to trigger the spacing when hovering over the list instead of the header? Like hovering over something under Watching makes the watching header space out, etc. Thanks either way. @Alextasha Yeah, the DropBox files are down so there isn't much you can do about it. Looks like you've already solved it though? |
Jul 18, 2016 11:34 AM
#3883
@Doomcat55 well almost ^^" because MAL sees DB links as dead (cuz my wallpaper is on DB and it's still working and MAL is showing 404 error) I decided to upload table background on photobucked too. But now I don't know how to make them transparent like one @patch517 anime list http://myanimelist.net/animelist/patch517 I aslo want to hover whole line, not separate elements like title/edit/more/etc. And I don't want to hovel line where I have counted how many things I watched (last line) |
Jul 18, 2016 12:29 PM
#3884
Alextasha said: If you have Photoshop or some equivalent then you can adjust the transparency there. It's easier though to set background-color instead of using background-image:@Doomcat55 well almost ^^" because MAL sees DB links as dead (cuz my wallpaper is on DB and it's still working and MAL is showing 404 error) I decided to upload table background on photobucked too. But now I don't know how to make them transparent like one @patch517 anime list http://myanimelist.net/animelist/patch517 I aslo want to hover whole line, not separate elements like title/edit/more/etc. And I don't want to hovel line where I have counted how many things I watched (last line) .category_totals, .td1, .td2, #grand_totals, #copyright { ".5" controls the transparency./* get rid of this */ background-image: url("http://i751.photobucket.com/albums/xx160/alextasha/MAL/PROZ_zpstfuclt3y.png"); /* replace it with */ background-color: hsla(0, 0%, 35%, .5); border-width: 0; padding: 2px; } |
Jul 19, 2016 2:42 AM
#3885
Okay for some reasons tags on my anime list decided to all try and fit into single lines which is pretty ugly, anyone knows how to fix this? I reseted the list design but it doesn't change anything. |
Jul 19, 2016 6:13 AM
#3886
Touniouk said: Okay for some reasons tags on my anime list decided to all try and fit into single lines which is pretty ugly, anyone knows how to fix this? I reseted the list design but it doesn't change anything. By default MAL line breaks behaviour is word-based, so when approaching the end of the line, if the next word won't fit it is put in the next line and so on. In your case your tag about "Mahou Shoujo? Naria☆Girls" is considered to be only one word, so it cannot be broken, therefore it is displayed in a single line and it extends the space reserved for your tags (this space is then used by your other tags so they are displayed in single lines). To fix it, the best (and easiest) way is to simply edit this one tag and add some spaces (like every 30 letters). |
Jul 19, 2016 6:50 AM
#3887
Cateinya said: Touniouk said: Okay for some reasons tags on my anime list decided to all try and fit into single lines which is pretty ugly, anyone knows how to fix this? I reseted the list design but it doesn't change anything. By default MAL line breaks behaviour is word-based, so when approaching the end of the line, if the next word won't fit it is put in the next line and so on. In your case your tag about "Mahou Shoujo? Naria☆Girls" is considered to be only one word, so it cannot be broken, therefore it is displayed in a single line and it extends the space reserved for your tags (this space is then used by your other tags so they are displayed in single lines). To fix it, the best (and easiest) way is to simply edit this one tag and add some spaces (like every 30 letters). Thanks man. |
Jul 19, 2016 3:53 PM
#3888
Does anybody know why the layout I'm using does not show the actual table, only its content? What I'm using is the SAO simple slightly modified (background, covers and menu). I'm using this modified version for more than a year and from time to time the table would dissapear and come back to normal. But now it passed more than a week... Any ideas? Or something to fix this permanently? |
Jul 19, 2016 4:23 PM
#3889
@Hibiki07 It's because the table background is an image hosted on DropBox. If the DropBox account goes down (possibly because it's getting too much traffic) then the image won't show up on your list. You can fix it permanently by replacing this line in your CSS (everywhere it appears): background-image:url(https://dl.dropbox.com/u/57348187/MAL/PROZ.png); background-color: hsla(0, 0%, 0%, .5); |
Jul 20, 2016 3:46 AM
#3890
Embarrassingly enough, it was just that I had yet to click save at the template page. I didnt know I even had to, I figured once I input all the right setting and I clicked save inside the "modern" heading that would be enough. But I was wrong and you need to click save 2 places. Thank you. |
Jul 20, 2016 6:40 AM
#3891
Hi! So I wanted to work on my list layout but since I'm a total newbie to this, I wanted to start by installing a premade layout. I don't know if I did something wrong or anything, but I followed all the steps from here and it doesn't work, I have a blank space above the logo of MAL but I don't have what it is supposed to be. I guess you can see it by checking my list Does it only happen to me? I'm pretty sure I did not make any mistake when I followed the steps. I also tried many layouts to see if it only happened to one, but I have the same problem with all the ones I used. I also have the same problem with both Chome and Firefox. I'm sorry if someone already asked about it or if I just failed miserably, but if someone has any idea to help me, it would be great, thanks in advance! |
Jul 20, 2016 8:24 AM
#3892
@volcano43 I assume you're using one of the layouts from this tutorial, right? Those don't come with wallpapers pre-installed, which is why you're seeing all of that white space. The same topic has links to the original wallpapers and a tutorial on how to add them. |
Jul 20, 2016 8:42 AM
#3893
@Doomcat55 Oh thank you, I was wondering why there was a link for the wallpaper... That's kind of disappointing to be so stupid. Anyway, thanks for your help! |
Jul 20, 2016 11:44 AM
#3894
@Doomcat55 thank you so much! :D It's just the way it used to be which is great. Another thing... can it be modified so that when you hover over a line the entire line to became darker? Right now only an table box is becoming this way. |
Jul 20, 2016 12:45 PM
#3895
@hibiki07 add tr:hover td[class^="td"] {background-color: hsla(0, 0%, 0%, .7);} |
Jul 24, 2016 1:28 AM
#3897
i just need help for making personal css for mal QUESTION 1: how to make link like this https://dl.dropboxusercontent.com/u/102421246/MAL/CSS/Lists/Haganai/HaganaiChibiPublic.css for making css i have css but can't use it https://www.dropbox.com/home?preview=TopBarrominmusa01.css this is like to preview QUESTION 2:how to convert image to culsor Question 3 : is there is any host to wihich we can upload css and image for mal ? |
rominmusaJul 24, 2016 2:18 AM
Jul 25, 2016 12:48 PM
#3898
Hey, I have a question to be answered. Maybe it was asked already, but this particular forum IS super long, and all that. So, the 'backdrop' for the list, the rectangle that dims the background image so that I can actually read what the list says, have disappeared. Before, this usually came back within a week or two, so I decided to wait it out a bit this time as well, but it has been more than that, and it still hasn't come back, so I decided to ask it here. If you need the code to see what's wrong, please message me or something~ |
Jul 25, 2016 2:59 PM
#3899
JPthugnificent said: Recent questions show up on recent pages ;) Check out this post and this one.Maybe it was asked already, but this particular forum IS super long, and all that. |
Jul 25, 2016 7:26 PM
#3900
@Doomcat55 Oh, sorry about that. I did see that post in a glance, but since the code was labeled as background-image I thought it was a different issue. Funny thing, since my manga list wasn't affected by this issue. Haven't checked that code quite yet tho. Anyways, thanks for the help! |
More topics from this board
Sticky: » [ BBCODE ] All 2023 BBcodes, Guides, and Templates ( 1 2 )Shishio-kun - Feb 16, 2023 |
58 |
by NightmareTala
»»
9 minutes ago |
|
Sticky: » [ SIGNATURES ~ PROFILES] All guides, generators, and templatesShishio-kun - Feb 16, 2023 |
33 |
by iluvmozu
»»
Yesterday, 7:07 AM |
|
» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )Valerio_Lyndon - Apr 19, 2018 |
1262 |
by Shishio-kun
»»
Sep 22, 4:35 AM |
|
» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )Shishio-kun - Jul 21, 2017 |
382 |
by Shishio-kun
»»
Sep 22, 4:29 AM |
|
» theme helpthreat - Jul 5 |
5 |
by Zaryf
»»
Aug 21, 5:46 AM |