New
Dec 12, 2015 6:51 PM
#3351
Hello, At the moment, I'm trying to edit my list, and it's been working pretty well... But I just wanted to ask a quick question... Does anyone know how to position their list table (custom position)? Or which part I can edit on my CSS? Also if the category links move with it? For example on my list at the moment, I don't know how to move it slightly more to the left, instead of all the way to the side of the screen. Could someone help me? Thanks very much in advanced. |
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines. |
Dec 12, 2015 8:53 PM
#3352
betterthansalad said: I think this is possible with something similar to this, though I don't know how to do it myself (I know DRedDogPE was mentioning making a new generator, so you could ask him to take a look at this post). Something like: "If the URL contains '&order=4', then all anime with score<5{display:none;}", or give padding-top to the first one with score=5, or whatever. Making the page go straight to score sounds like something you could do with a userscript, but again, I don't know how to do that. Sorry ^^Does anyone else have an idea on how I could separate what I liked from what I disliked? kookie224 said: Find this code and add the line in red:Hello, At the moment, I'm trying to edit my list, and it's been working pretty well... But I just wanted to ask a quick question... Does anyone know how to position their list table (custom position)? Or which part I can edit on my CSS? Also if the category links move with it? For example on my list at the moment, I don't know how to move it slightly more to the left, instead of all the way to the side of the screen. Could someone help me? Thanks very much in advanced. #list_surround{ width: 850px;} .animetitle:before { content: ""; height: 0px; width: 0px; margin-left:0; margin-top:10px; display:inline-block !important; position: absolute; background-size: contain; transition: all 0.4s ease-in-out; left: 50px; } You can play with the number to move it more to the left or right, or change "px" to "%" if it's easier for you. |
Dec 13, 2015 3:54 AM
#3353
betterthansalad said: I didn't see 2) was an option, thanks. How about the order? Like type/score as a default. The url when unorganized is http://myanimelist.net/animelist/name and when organized with the score http://myanimelist.net/animelist/name?&order=4 Anyway I could add the 2nd url somewhere maybe? I've never seen someone doing that... so, perhaps... there's no an option to set the organized list as a default page anywhere on MAL. and 3rd party app cannot help at all... But you can provide the "...&order=4" link on your profile page, signature, or elsewhere... |
Dec 13, 2015 5:04 AM
#3354
betterthansalad said: D_Cuy said: @betterthansalad 1) I think, it's not possible... 2) go to > here. at the "Default Status Selected", change Show All with whatever you want... Hi, I didn't see 2) was an option, thanks. How about the order? Like type/score as a default. The url when unorganized is http://myanimelist.net/animelist/name and when organized with the score http://myanimelist.net/animelist/name?&order=4 Anyway I could add the 2nd url somewhere maybe? About 1) Does anyone else have an idea on how I could separate what I liked from what I disliked? Even if it's not the way I presented it, there may be another way to do it. Other than deleting everything hah. If I have everything I dislike thrown at my face every time I click my profile, I'm going to be physically sick. Do you mean hiding the anime that you dont like? |
Best MAL Generator tool! |
Dec 13, 2015 5:31 AM
#3355
betterthansalad said: D_Cuy said: @betterthansalad 1) I think, it's not possible... 2) go to > here. at the "Default Status Selected", change Show All with whatever you want... Hi, I didn't see 2) was an option, thanks. How about the order? Like type/score as a default. The url when unorganized is http://myanimelist.net/animelist/name and when organized with the score http://myanimelist.net/animelist/name?&order=4 Anyway I could add the 2nd url somewhere maybe? About 1) Does anyone else have an idea on how I could separate what I liked from what I disliked? Even if it's not the way I presented it, there may be another way to do it. Other than deleting everything hah. If I have everything I dislike thrown at my face every time I click my profile, I'm going to be physically sick. I made a custom image api for ya, replace your @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import "http://mal-image.appspot.com/custom/betterthansalad/5"; |
Best MAL Generator tool! |
Dec 13, 2015 7:59 PM
#3356
I'm having some trouble with a font-face declaration. My fonts and CSS are all in the same folder: Folder ----Style.css ----didot.ttf ----Vermin.ttf And my declarations are as follows: @font-face { font-family: didot; src: url (didot.ttf); } @font-face { font-family: Vermin; src: url (Vermin.ttf); } "didot" font works fine, but "Vermin" refuses to show in any browser. Here is the font: http://www.1001fonts.com/vermin-vibes-font.html Anyone? |
Dec 14, 2015 3:51 AM
#3357
Doomcat55 said: I'm having some trouble with a font-face declaration. My fonts and CSS are all in the same folder: Folder ----Style.css ----didot.ttf ----Vermin.ttf And my declarations are as follows: @font-face { font-family: didot; src: url (didot.ttf); } @font-face { font-family: Vermin; src: url (Vermin.ttf); } "didot" font works fine, but "Vermin" refuses to show in any browser. Here is the font: http://www.1001fonts.com/vermin-vibes-font.html Anyone? maybe try deleting the space between url and opening bracket. i do mine like this: @font-face { font-family: 'didot'; src: url(didot.ttf) format('truetype'); } @font-face { font-family: 'Vermin'; src: url(Vermin.ttf) format('truetype'); } also check if you have didot installed on your computer (that would solve the one showing up and the other not). on a side note, didot is a fine font, good choice! :D |
Dec 14, 2015 5:54 AM
#3358
I'm using this layout @import"http://fonts.googleapis.com/css?family=PT+Sans"; #copyright { text-align:center; width:690px } #grand_totals { text-align:center } #list_surround { left:30px; position:absolute!important; width:990px } #list_surround .animetitle+small { color:#537DA7; font-size:10px } #mal_cs_listinfo,#mal_cs_links,#mal_cs_otherlinks,#mal_cs_powered { display:none } * { color:#FFFFFF; font:400 13px "PT Sans"; text-decoration:initial } .animetitle { font-weight:400 } .category_totals { } .form { border:1px solid #E0E0E0; color:#000000; font:11px Verdana,Arial; padding:3px } .header_al { font-size:16px; font-weight:400 } .header_al_links { } .header_completed { } .header_cw { } .header_dropped { } .header_onhold { } .header_ptw { } .header_title { font-size:14px; font-weight:400 } .status_not_selected a,.status_selected a { background-color:#537DA7; border:1px solid rgba(255,255,255,0.2); border-bottom-left-radius:0; border-bottom-right-radius:0; border-style:solid; border-top-left-radius:0; border-top-right-radius:0; color:#FFFFFF; display:block!important; font-weight:400; padding:6px; transition:all .25s ease-in-out 0 } .status_not_selected a:hover { background-color:#5F8FBF; border-color:rgba(255,255,255,0.2); box-shadow:0 0 0 rgba(0,0,0,0); transition:all .25s ease-in-out 0 } .status_not_selected,.status_selected { border:0 none!important; height:auto!important; padding:0; text-align:center!important; width:16.667%!important } .status_selected a { background-color:#537DA7; border:1px solid rgba(255,255,255,0.2); border-style:solid } .status_selected a:hover { background-color:#5F8FBF; border-color:rgba(255,255,255,0.2); box-shadow:0 0 0 rgba(0,0,0,0); transition:all .25s ease-in-out 0 } .table_header { background-color:#537DA7; border-color:rgba(255,255,255,0.2); border-style:solid; border-width:1px 1px 1px 0; color:#000000; padding:3px } .table_headerlink { } .table_headerlink:hover { } .table_headerlink:visited { } .td1 { background-color:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.2); border-style:solid; border-width:0 1px 1px 0; color:#FFFFFF; padding:3px; transition:all .25s ease-in-out 0 } .td1:nth-of-type(2),.td2:nth-of-type(2) { text-align:left } .td2 { background-color:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.2); border-style:solid; border-width:0 1px 1px 0; color:#FFFFFF; padding:3px; transition:all .25s ease-in-out 0 } a { color:#FFFFFF; text-decoration:initial } a:hover { color:#000000; text-decoration:initial } a:visited { color:#FFFFFF; text-decoration:initial } body { background-attachment:fixed!important; background-image:url(http://i.imgur.com/V7TIZFk.jpg); background-position:right bottom; background-repeat:initial initial; background-size:cover } td:nth-of-type(5) { width:260px } tr:hover [class^="td"] { background-color:rgba(82,124,165,0.8) } but there isn't back to my profile add-on like this How can I fix this? |
Dec 14, 2015 9:37 AM
#3359
nymphiae said: I did some hunting and it turns out that the declaration itself is fine, but the font is getting a "403 Forbidden" in Firefox only. Do you know what to do?Doomcat55 said: I'm having some trouble with a font-face declaration. My fonts and CSS are all in the same folder: Folder ----Style.css ----didot.ttf ----Vermin.ttf And my declarations are as follows: @font-face { font-family: didot; src: url (didot.ttf); } @font-face { font-family: Vermin; src: url (Vermin.ttf); } "didot" font works fine, but "Vermin" refuses to show in any browser. Here is the font: http://www.1001fonts.com/vermin-vibes-font.html Anyone? maybe try deleting the space between url and opening bracket. i do mine like this: @font-face { font-family: 'didot'; src: url(didot.ttf) format('truetype'); } @font-face { font-family: 'Vermin'; src: url(Vermin.ttf) format('truetype'); } also check if you have didot installed on your computer (that would solve the one showing up and the other not). on a side note, didot is a fine font, good choice! :D Uncrowned_King said: Remove this part of your code: I'm using this layout @import"http://fonts.googleapis.com/css?family=PT+Sans"; #copyright { text-align:center; width:690px } #grand_totals { text-align:center } #list_surround { left:30px; position:absolute!important; width:990px } #list_surround .animetitle+small { color:#537DA7; font-size:10px } #mal_cs_listinfo,#mal_cs_links,#mal_cs_otherlinks,#mal_cs_powered { display:none } * { color:#FFFFFF; font:400 13px "PT Sans"; text-decoration:initial } .animetitle { font-weight:400 } .category_totals { } .form { border:1px solid #E0E0E0; color:#000000; font:11px Verdana,Arial; padding:3px } .header_al { font-size:16px; font-weight:400 } .header_al_links { } .header_completed { } .header_cw { } .header_dropped { } .header_onhold { } .header_ptw { } .header_title { font-size:14px; font-weight:400 } .status_not_selected a,.status_selected a { background-color:#537DA7; border:1px solid rgba(255,255,255,0.2); border-bottom-left-radius:0; border-bottom-right-radius:0; border-style:solid; border-top-left-radius:0; border-top-right-radius:0; color:#FFFFFF; display:block!important; font-weight:400; padding:6px; transition:all .25s ease-in-out 0 } .status_not_selected a:hover { background-color:#5F8FBF; border-color:rgba(255,255,255,0.2); box-shadow:0 0 0 rgba(0,0,0,0); transition:all .25s ease-in-out 0 } .status_not_selected,.status_selected { border:0 none!important; height:auto!important; padding:0; text-align:center!important; width:16.667%!important } .status_selected a { background-color:#537DA7; border:1px solid rgba(255,255,255,0.2); border-style:solid } .status_selected a:hover { background-color:#5F8FBF; border-color:rgba(255,255,255,0.2); box-shadow:0 0 0 rgba(0,0,0,0); transition:all .25s ease-in-out 0 } .table_header { background-color:#537DA7; border-color:rgba(255,255,255,0.2); border-style:solid; border-width:1px 1px 1px 0; color:#000000; padding:3px } .table_headerlink { } .table_headerlink:hover { } .table_headerlink:visited { } .td1 { background-color:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.2); border-style:solid; border-width:0 1px 1px 0; color:#FFFFFF; padding:3px; transition:all .25s ease-in-out 0 } .td1:nth-of-type(2),.td2:nth-of-type(2) { text-align:left } .td2 { background-color:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.2); border-style:solid; border-width:0 1px 1px 0; color:#FFFFFF; padding:3px; transition:all .25s ease-in-out 0 } a { color:#FFFFFF; text-decoration:initial } a:hover { color:#000000; text-decoration:initial } a:visited { color:#FFFFFF; text-decoration:initial } body { background-attachment:fixed!important; background-image:url(http://i.imgur.com/V7TIZFk.jpg); background-position:right bottom; background-repeat:initial initial; background-size:cover } td:nth-of-type(5) { width:260px } tr:hover [class^="td"] { background-color:rgba(82,124,165,0.8) } but there isn't back to my profile add-on like this How can I fix this? #mal_cs_listinfo,#mal_cs_links,#mal_cs_otherlinks,#mal_cs_powered { display:none } |
Dec 14, 2015 10:57 AM
#3360
How do I make this style to display covers, but have a functioning "More" button: [url]http://pastebin.com/UMMGNfVe[/url]? I've replaced @import "https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM"; with @import url(https://googledrive.com/host/0BxjwQr0BBXs-MVlzYkRVc0k0Q0k); Replaced .hide { background-size: cover; left: -150px; vertical-align: 50%; height: 176px; width: 114px; padding-bottom: 0px; border-style: solid; border-top: 1px solid transparent;; border-left: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid transparent; border-radius: 25px 25px 25px 25px; background-position: center 50% !important; background-repeat: no-repeat !important; display: block !important; position: absolute; visibility: hidden; opacity: 0; } with .animetitle:before { content: ""; height: 0px; width: 0px; margin-left:0; margin-top:10px; display:inline-block !important; position: absolute; background-size: contain; transition: all 0.4s ease-in-out; } .animetitle:hover:before { content: ""; margin-left:-210px; margin-top: 10px; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:7px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; position:absolute; z-index:1; } And removed #list_surround small a:last-of-type { display: none ; } Now, the covers are shown and the "More" works... But the result is not exactly as I want. First, the covers are displayed only when hovered over the title itself, not the whole row. Second, the "More" info is not loaded below as usual, but there appears some icon on the right that you have to hover, and the info that appears has a transparent background |
Dec 14, 2015 12:08 PM
#3361
Serhiyko said: How do I make this style to display covers, but have a functioning "More" button: [url]http://pastebin.com/UMMGNfVe[/url]? I've replaced @import "https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM"; with @import url(https://googledrive.com/host/0BxjwQr0BBXs-MVlzYkRVc0k0Q0k); Replaced .hide { background-size: cover; left: -150px; vertical-align: 50%; height: 176px; width: 114px; padding-bottom: 0px; border-style: solid; border-top: 1px solid transparent;; border-left: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid transparent; border-radius: 25px 25px 25px 25px; background-position: center 50% !important; background-repeat: no-repeat !important; display: block !important; position: absolute; visibility: hidden; opacity: 0; } with .animetitle:before { content: ""; height: 0px; width: 0px; margin-left:0; margin-top:10px; display:inline-block !important; position: absolute; background-size: contain; transition: all 0.4s ease-in-out; } .animetitle:hover:before { content: ""; margin-left:-210px; margin-top: 10px; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:7px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; position:absolute; z-index:1; } And removed #list_surround small a:last-of-type { display: none ; } Now, the covers are shown and the "More" works... But the result is not exactly as I want. First, the covers are displayed only when hovered over the title itself, not the whole row. Second, the "More" info is not loaded below as usual, but there appears some icon on the right that you have to hover, and the info that appears has a transparent background for the covers to show up when hovering over the row opposed to just anime title use: tr:hover .animetitle:before .animetitle:hover:before as for the second thing, can't really test the code right now, so can't tell. :/ |
Dec 14, 2015 12:20 PM
#3362
Serhiyko said: For the "more" section, replace /* NAVBAR */ @import "http://googledrive.com/host/0Bz6PekZ3y6B9WkxISjNLOWVPeTg/"; /* NAVBAR */ @import"https://dl.dropbox.com/s/um618q4x7o8v4xh/NAVBAR.css"; |
Dec 14, 2015 2:17 PM
#3363
Doomcat55 said: I would appreciate if you rehosted the new code on your own Dropbox Why? Are you afraid of it being shut down due to excessive traffic? Doomcat55 said: Serhiyko said: For the "more" section, replace /* NAVBAR */ @import "http://googledrive.com/host/0Bz6PekZ3y6B9WkxISjNLOWVPeTg/"; /* NAVBAR */ @import"https://dl.dropbox.com/s/um618q4x7o8v4xh/NAVBAR.css"; Thanks, it works beautifully in Firefox, but there's still an issue in Chrome: It gets two rows higher than needed nymphiae said: for the covers to show up when hovering over the row opposed to just anime title use: tr:hover .animetitle:before Thanks, one more thing though. There was an animation: @keyframes Covers { from { left: -150px; } to { left: 36px; } } /* Show panel when name hovered over */ :hover + .hide { animation: Covers 0.7s ease-out; animation-fill-mode: forwards; visibility: visible; opacity: 1; } But since I don't use .hide now, what should I use? |
SerhiykoDec 15, 2015 2:55 AM
Dec 14, 2015 4:03 PM
#3364
It looks fine when I try it: http://puu.sh/lVO7J/6f2f33ebc0.png Could you repost your code? Serhiyko said: Doomcat55 said: I would appreciate if you rehosted the new code on your own Dropbox Why? Are you afraid of it being shut down due to excessive traffic? I only have the free 2GB Dropbox comes with, and I've used most of it up, so I like to keep extra files to a minimum. I probably won't delete it, but it's safer if you rehost it. |
Dec 15, 2015 2:53 AM
#3365
Serhiyko said: nymphiae said: for the covers to show up when hovering over the row opposed to just anime title use: tr:hover .animetitle:before Thanks, one more thing though. There was an animation: @keyframes Covers { from { left: -150px; } to { left: 36px; } } /* Show panel when name hovered over */ :hover + .hide { animation: Covers 0.7s ease-out; animation-fill-mode: forwards; visibility: visible; opacity: 1; } But since I don't use .hide now, what should I use? keep this on top @keyframes Covers { from { left: -150px; } to { left: 36px; } } animation: Covers 0.7s ease-out; animation-fill-mode: forwards; visibility: visible; opacity: 1; |
Dec 15, 2015 2:57 AM
#3366
nymphiae said: not sure if this will really is going to work, i'm not testing anything.[/size] doh, I've just figured that out a minute before you posted. Thanks anyway Doomcat55 said: It looks fine when I try it: http://puu.sh/lVO7J/6f2f33ebc0.png Could you repost your code? Nevermind, I've found what the issue was Doomcat55 said: I only have the free 2GB Dropbox comes with, and I've used most of it up, so I like to keep extra files to a minimum. I probably won't delete it, but it's safer if you rehost it. I see. I'll keep that in mind Here is the result, if anyone's interested: |
SerhiykoDec 15, 2015 3:27 AM
Dec 15, 2015 8:50 PM
#3367
When I import this http://puu.sh/lXfbm/c9d43494f4.css I get this http://puu.sh/lXjnM/995d8e57de.png How can I align everything to the top? |
Dec 15, 2015 8:58 PM
#3368
@karaageteba add this to the bottom of your CSS:form[action*="logout"] { display: inline; } |
Dec 15, 2015 9:23 PM
#3369
Doomcat55 said: @karaageteba add this to the bottom of your CSS: form[action*="logout"] { display: inline; } Thank you! |
Dec 17, 2015 8:51 AM
#3370
Dec 17, 2015 10:21 AM
#3371
Dec 19, 2015 6:34 AM
#3372
Hi, I just wonder what are the codes for the music media? http://puu.sh/m1hB8.jpg For short, I'm searching for codes of the music player like Doomcat55's list, but I want to insert them in the copyright:after section (when you hover, it expands) as showed in the image above (click on the icon and the file plays, click on it again it stops). And another question, can we chose soundclound instead of youtube link? Thanks in advance. |
Takana_no_HanaDec 19, 2015 6:38 AM
Dec 19, 2015 10:27 AM
#3373
Doomcat55 said: CryoPhantom said: Add to the bottom of your CSS:I have a problem where "Score", "Type" and "Progress" are not aligned with the text. I have outlined what the error is in a red box here [class^=td]:nth-of-type(6) {display: none;} do what doomcat wrote, or just uncheck tags here if you're not planning to use them. Takana_no_Hana said: Hi, I just wonder what are the codes for the music media? http://puu.sh/m1hB8.jpg For short, I'm searching for codes of the music player like Doomcat55's list, but I want to insert them in the copyright:after section (when you hover, it expands) as showed in the image above (click on the icon and the file plays, click on it again it stops). And another question, can we chose soundclound instead of youtube link? Thanks in advance. i think you can't, because afaik the "music player" is linked to the selectors that have javascript (like "more" button) or something like that. |
Dec 20, 2015 10:01 PM
#3374
Hey guys, I have an issue with my MAL CSS where the "edit" button for tags is missing and I can't figure out how to add it back so I can edit my tags within the list instead of going into the anime's entry and editing it there. Here is my code: /* ------------------------------------------------------------ */ /* Font imports */ @import url(http://fonts.googleapis.com/css?family=Roboto:400,300,500); @import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:800); /* ------------------------------------------------------------ */ /* Cover art database import */ @import url(https://dl.dropbox.com/s/5vcd0p1v0bgolzt/anime_covers_10_4_15.css?dl=0); /* ------------------------------------------------------------ */ /* Cover art setup */ :hover + .hide { width: 13vw; height:17vw; bottom:30vw; right:2vw; background-size: cover; background-color: white; background-position: center center !important; background-repeat: no-repeat !important; border-width: 1px; border-style: solid; border-color: black; display: block; position: fixed; } .hide:before { background: transparent; } /* ------------------------------------------------------------ */ /* Color scheme and setup */ #grand_totals, .category_totals, [class^=status_], [style^="float: right"] { display: none; } [href] { text-decoration: none; color: #555555; } [href]:hover, [id^="scor"]:hover { color: #e62b0f; } tr:hover [class^="td"] { background-color: #f57562 ; } #list_surround { position: relative; background-image: url('http://i.imgur.com/AXklIkJ.jpg?1'); background-repeat: no-repeat; background-position: right bottom; background-size: 38% auto; background-attachment: fixed; font-family: "Roboto", "Arial"; font-size: 13px; color: #555555; } #list_surround [cellpadding="0"] { position: relative; width: 55%; left: 5%; } [class^=header_] { margin-right: 100%; margin-top: 10px; white-space: nowrap; } .header_title { font-family: "Alegreya Sans SC", "Arial"; font-size: 32px; font-weight: 800; } .table_header { padding: 8px 9px 8px; } .td1 { background-color: #f8a599; } .td2 { background-color: #FAFAFA; } .td1, .td2 { padding: 5px 8px 5px; border-right: 1px solid white; border-left: 1px solid white; } td[align="left"] { text-align: center; font-size: 12px; } #copyright { font-size: 12px; font-weight: 250; padding-top: 25px; margin-bottom: 25px; } /* ------------------------------------------------------------ */ /* Custom MAL banner setup */ #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { box-sizing: border-box; background: none no-repeat scroll 100% 0 transparent; border: 0 none; height: 0 !important; overflow: hidden; padding: 32px 0 0 !important; position: fixed; right: 4px; text-align: right; top: 4px; z-index: 10; width: 210px !important; } #mal_cs_listinfo:hover, #mal_cs_links:hover, #mal_cs_otherlinks:hover, #mal_cs_powered:hover { height: 500px !important; padding-top: 32px !important; } #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd { background-color: transparent; font-size: 0 !important; line-height: 0; margin: 0 !important; opacity: 0; padding: 4px 0 0 !important; } #mal_cs_listinfo:hover div, #mal_cs_links:hover div, #mal_cs_otherlinks:hover div, #mal_cs_powered:hover div, #mal_cs_powered:hover dd { opacity: 1; } #mal_cs_listinfo div:nth-of-type(2), #mal_cs_links div:nth-of-type(2), #mal_cs_otherlinks div:nth-of-type(2), #mal_cs_powered div:nth-of-type(2) { padding: 4px 0 0 !important; } #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a { background-color: #555555 !important; display: block; font: 18px/17px 'Arial', sans-serif !important; font-weight: bold; margin: 4px 0 0; padding: 8px 8px 8px !important; text-decoration: none !important; } #mal_cs_listinfo a:nth-of-type(1), #mal_cs_links a:nth-of-type(1), #mal_cs_otherlinks a:nth-of-type(1), #mal_cs_powered a:nth-of-type(1) { margin-top: 0; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover { background-color: #444444 !important; } #mal_cs_listinfo strong a strong { font-weight: normal; } #mal_cs_otherlinks strong { color: #555555; display: block; font: bold 13px/17px 'Arial',sans-serif !important; padding: 0 4px 4px; } #mal_cs_otherlinks strong a { background: none transparent !important; color: #555555; display: inline; font: bold 13px/17px 'Arial',sans-serif !important; margin: 0; padding: 0; } #mal_cs_powered a { background-color: white !important; display: block !important; margin: 0 !important; opacity: 0; padding: 4px 0 0 !important; } #mal_cs_powered:hover a { opacity: 1; } #mal_cs_powered #search { padding: 8px 2px 0px 0px !important; position: relative; } #searchBox { box-sizing: border-box; border-color: #555555; border-style: solid; border-width: 1px; color: #555555; padding: 0 8px 0 !important; display: inline-block; font-family: arial, sans-serif; font-size: 14px !important; height: 32px; vertical-align: top; width: 210px !important; } #searchBox:hover, #searchBox:focus { border-color: #444444; } #searchListButton { display: none !important; } #mal_cs_listinfo { background-image: url("http://i.imgur.com/LSwncOV.jpg"); right: 106px !important; } #mal_cs_links { background-image: url("http://i.imgur.com/vl379rT.jpg"); right: 72px !important; z-index: 9; } #mal_cs_otherlinks { background-image: url("http://i.imgur.com/Rz4IQCY.jpg"); right: 38px !important; z-index: 8; } #mal_cs_powered { background-image: url("http://i.imgur.com/U0jtWhM.png"); right: 4px !important; z-index: 7; position: fixed !important; } #mal\_control\_strip { background: transparent !important; } #mal_cs_pic img { display: none !important; } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } /* Tags Row Width */ .td1:nth-of-type(6), .td2:nth-of-type(6){ width: 200px; } /* Tags table Header width */ .table_header:nth-of-type(6) { width: 200px; } /* Animetitle's box width */ .td1:nth-of-type(2), .td2:nth-of-type(2){ width: 200px; } /* Animetitle table header width */ .table_header:nth-of-type(2) { width: 200px; } I would ask the original owner of this code (reddit user) but it seems he is no longer active. Thanks in advance. |
Dec 21, 2015 6:08 AM
#3375
Plateau95 said: Remove the text in red (including the comma): Hey guys, I have an issue with my MAL CSS where the "edit" button for tags is missing and I can't figure out how to add it back so I can edit my tags within the list instead of going into the anime's entry and editing it there. Here is my code: /* ------------------------------------------------------------ */ /* Font imports */ @import url(http://fonts.googleapis.com/css?family=Roboto:400,300,500); @import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:800); /* ------------------------------------------------------------ */ /* Cover art database import */ @import url(https://dl.dropbox.com/s/5vcd0p1v0bgolzt/anime_covers_10_4_15.css?dl=0); /* ------------------------------------------------------------ */ /* Cover art setup */ :hover + .hide { width: 13vw; height:17vw; bottom:30vw; right:2vw; background-size: cover; background-color: white; background-position: center center !important; background-repeat: no-repeat !important; border-width: 1px; border-style: solid; border-color: black; display: block; position: fixed; } .hide:before { background: transparent; } /* ------------------------------------------------------------ */ /* Color scheme and setup */ #grand_totals, .category_totals, [class^=status_], [style^="float: right"] { display: none; } [href] { text-decoration: none; color: #555555; } [href]:hover, [id^="scor"]:hover { color: #e62b0f; } tr:hover [class^="td"] { background-color: #f57562 ; } #list_surround { position: relative; background-image: url('http://i.imgur.com/AXklIkJ.jpg?1'); background-repeat: no-repeat; background-position: right bottom; background-size: 38% auto; background-attachment: fixed; font-family: "Roboto", "Arial"; font-size: 13px; color: #555555; } #list_surround [cellpadding="0"] { position: relative; width: 55%; left: 5%; } [class^=header_] { margin-right: 100%; margin-top: 10px; white-space: nowrap; } .header_title { font-family: "Alegreya Sans SC", "Arial"; font-size: 32px; font-weight: 800; } .table_header { padding: 8px 9px 8px; } .td1 { background-color: #f8a599; } .td2 { background-color: #FAFAFA; } .td1, .td2 { padding: 5px 8px 5px; border-right: 1px solid white; border-left: 1px solid white; } td[align="left"] { text-align: center; font-size: 12px; } #copyright { font-size: 12px; font-weight: 250; padding-top: 25px; margin-bottom: 25px; } /* ------------------------------------------------------------ */ /* Custom MAL banner setup */ #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { box-sizing: border-box; background: none no-repeat scroll 100% 0 transparent; border: 0 none; height: 0 !important; overflow: hidden; padding: 32px 0 0 !important; position: fixed; right: 4px; text-align: right; top: 4px; z-index: 10; width: 210px !important; } #mal_cs_listinfo:hover, #mal_cs_links:hover, #mal_cs_otherlinks:hover, #mal_cs_powered:hover { height: 500px !important; padding-top: 32px !important; } #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd { background-color: transparent; font-size: 0 !important; line-height: 0; margin: 0 !important; opacity: 0; padding: 4px 0 0 !important; } #mal_cs_listinfo:hover div, #mal_cs_links:hover div, #mal_cs_otherlinks:hover div, #mal_cs_powered:hover div, #mal_cs_powered:hover dd { opacity: 1; } #mal_cs_listinfo div:nth-of-type(2), #mal_cs_links div:nth-of-type(2), #mal_cs_otherlinks div:nth-of-type(2), #mal_cs_powered div:nth-of-type(2) { padding: 4px 0 0 !important; } #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a { background-color: #555555 !important; display: block; font: 18px/17px 'Arial', sans-serif !important; font-weight: bold; margin: 4px 0 0; padding: 8px 8px 8px !important; text-decoration: none !important; } #mal_cs_listinfo a:nth-of-type(1), #mal_cs_links a:nth-of-type(1), #mal_cs_otherlinks a:nth-of-type(1), #mal_cs_powered a:nth-of-type(1) { margin-top: 0; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover { background-color: #444444 !important; } #mal_cs_listinfo strong a strong { font-weight: normal; } #mal_cs_otherlinks strong { color: #555555; display: block; font: bold 13px/17px 'Arial',sans-serif !important; padding: 0 4px 4px; } #mal_cs_otherlinks strong a { background: none transparent !important; color: #555555; display: inline; font: bold 13px/17px 'Arial',sans-serif !important; margin: 0; padding: 0; } #mal_cs_powered a { background-color: white !important; display: block !important; margin: 0 !important; opacity: 0; padding: 4px 0 0 !important; } #mal_cs_powered:hover a { opacity: 1; } #mal_cs_powered #search { padding: 8px 2px 0px 0px !important; position: relative; } #searchBox { box-sizing: border-box; border-color: #555555; border-style: solid; border-width: 1px; color: #555555; padding: 0 8px 0 !important; display: inline-block; font-family: arial, sans-serif; font-size: 14px !important; height: 32px; vertical-align: top; width: 210px !important; } #searchBox:hover, #searchBox:focus { border-color: #444444; } #searchListButton { display: none !important; } #mal_cs_listinfo { background-image: url("http://i.imgur.com/LSwncOV.jpg"); right: 106px !important; } #mal_cs_links { background-image: url("http://i.imgur.com/vl379rT.jpg"); right: 72px !important; z-index: 9; } #mal_cs_otherlinks { background-image: url("http://i.imgur.com/Rz4IQCY.jpg"); right: 38px !important; z-index: 8; } #mal_cs_powered { background-image: url("http://i.imgur.com/U0jtWhM.png"); right: 4px !important; z-index: 7; position: fixed !important; } #mal\_control\_strip { background: transparent !important; } #mal_cs_pic img { display: none !important; } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } /* Tags Row Width */ .td1:nth-of-type(6), .td2:nth-of-type(6){ width: 200px; } /* Tags table Header width */ .table_header:nth-of-type(6) { width: 200px; } /* Animetitle's box width */ .td1:nth-of-type(2), .td2:nth-of-type(2){ width: 200px; } /* Animetitle table header width */ .table_header:nth-of-type(2) { width: 200px; } I would ask the original owner of this code (reddit user) but it seems he is no longer active. Thanks in advance. #grand_totals, .category_totals, [class^=status_], [style^="float: right"] { display: none; } |
Dec 22, 2015 3:59 PM
#3376
Hi, are there any other ways to add a media player (youtube link) not using anime cover page section? |
Dec 22, 2015 4:30 PM
#3377
Dec 22, 2015 5:39 PM
#3378
Doomcat55 said: Takana_no_Hana said: No, it has to be a Youtube video in the "more" section. You can free that section up by using ".animetitle" covers instead, though (see the topic on covers)Hi, are there any other ways to add a media player (youtube link) not using anime cover page section? Yeah I was able to change the section to .animetitle covers but I cant seem to show any youtube video in my list. (I did put youtube link as bbcode in the comment section). |
Dec 22, 2015 6:36 PM
#3379
Takana_no_Hana said: Which show? Can you share a screenshot of the bbcode?Doomcat55 said: Takana_no_Hana said: Hi, are there any other ways to add a media player (youtube link) not using anime cover page section? Yeah I was able to change the section to .animetitle covers but I cant seem to show any youtube video in my list. (I did put youtube link as bbcode in the comment section). Also, before you can see the video, you'll need to reenable the more section. Remove these codes from your CSS: @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); #list_surround small a:last-of-type { display: none !important; } |
Dec 22, 2015 7:14 PM
#3380
Okay, I did both, the show I choose is God Eater (I believe the ID for it is 27631). So it did appear in the more section but only when I click on the more button. Hmm is there anyway I can get the media out without having to click on the more? |
Takana_no_HanaDec 22, 2015 7:19 PM
Dec 22, 2015 7:40 PM
#3381
Takana_no_Hana said: Unfortunately not, sorry - that's just how the site is built.Okay, I did both, the show I choose is God Eater (I believe the ID for it is 27631). So it did appear in the more section but only when I click on the more button. Hmm is there anyway I can get the media out without having to click on the more? Now that you have the video, the next step is to position the "more" button where you want it (in my list, the "player" icon is my more button). You can do that with this code (fill in the numbers yourself): #xmenu27631 { position: fixed; top: ; left: ; } Extra tricks: You can resize the video to show or hide certain parts by changing the width and height in the first code I gave you (iframe). Examples: width 17px, height 17px = small play button Once you decide on a size, if you know how, you can make an icon to cover the video (sort of like my red dot play button) to make it blend with your listwidth 425px, height 100px = once the video starts, you get the pause/play controls and scrollbar but without most of the video |
Dec 22, 2015 9:59 PM
#3382
Okay, I have managed to insert the media onto my list using your codes, thanks a lot. Doomcat55 said: Once you decide on a size, if you know how, you can make an icon to cover the video (sort of like my red dot play button) to make it blend with your list But how do I do this exactly? I have messed around with the codes and can't seem to insert any background image into it. |
Dec 23, 2015 8:09 AM
#3383
Takana_no_Hana said: You can't put an image directly into the video, you need to make it in a separate element on top of the video. Try putting it as a background-image in "#moreID .borderRBL:before" and take out "background: #A00101;"Okay, I have managed to insert the media onto my list using your codes, thanks a lot. Doomcat55 said: Once you decide on a size, if you know how, you can make an icon to cover the video (sort of like my red dot play button) to make it blend with your list But how do I do this exactly? I have messed around with the codes and can't seem to insert any background image into it. |
Dec 26, 2015 12:48 AM
#3384
My category title bar is not located in the center in Google Chrome, can you help me out? Thank you in advance! Here is my code: /* Font */ @import url(http://fonts.googleapis.com/css?family=Amatic+SC); @import url(http://fonts.googleapis.com/css?family=Oswald); @import url(http://fonts.googleapis.com/css?family=Patrick+Hand+SC); @import url(http://fonts.googleapis.com/css?family=Cantora+One); /* Cover */ @import url(https://dl.dropbox.com/s/cp0wq4qx7o0opz1/Cover.css); /* Layout */ @import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css); body { background-image: url(http://i.imgur.com/29dyyWE.jpg); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; max-width: 1210px; min-width: 726px; } body { margin: auto !important; } #inlineContent { background-image: url(); } #list_surround { margin: 150px 0px 0px -10px; padding: 0px 10px 10px 10px; width: 100%; border-radius: 20px 20px 0px 0px; box-shadow: 0px 0px 10px #302d2c; } #list_surround >:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw):hover { z-index: 4; } #list_surround >:hover + .hide { z-index: 3; } a { color: #dae5ff !important; font-size: 13px; text-shadow: #000 0px 0px 1px; -webkit-font-smoothing: antialiased; text-decoration: none; font-family: Cantora One; } a:active,a:focus { outline: none; } /* Anime Title */ .animetitle { display: block; visibility: visible; position: absolute; left: 8px; bottom: 41px; padding: 6px; width: 191px; max-height: 100px; overflow: hidden; text-align: center; font-size: 13px; border-radius: 7px; } /* Header Title */ .header_title { background: #3a3635; padding-left: 30px; font-size: 30px; font-weight: bold; text-align: center; text-transform: uppercase; letter-spacing: 6px; text-shadow: -1px 0px #E42C8B, -2px -1px #E42C8B, 1px 0px #A9E42C, 2px 1px #36CCFB; color: #FFF; font-family: Oswald; border-radius: 13px; } .header_title:hover { background: #ff1d3d; } /* Category Title */ .status_selected, .status_not_selected { width: auto; white-space: nowrap; border-radius: 7px; } .status_selected a:before, .status_not_selected a:before { display: block; padding: 0 20px; line-height: 42px; width: 140px; font-size: 16px; font-family: Oswald; } /* Episodes */ td[width="50"] + .td1:nth-of-type(5):before, [width="50"] + .td2:nth-of-type(5):before { content: "Episodes: "; } td[width="50"] + .td1:nth-of-type(5), td[width="50"] + .td2:nth-of-type(5) { right: 11px; bottom: 11px; width: auto; text-align: right; font-size: 14px; font-family: Patrick Hand SC; } /* Numbers */ .td1:first-of-type:before, .td2:first-of-type:before { display: none; } .td1:first-of-type, .td2:first-of-type { top: 11px; left: 11px; width: 30px; font-size: 13px; font-family: Patrick Hand SC; } /* Score */ .td1:nth-of-type(3):before, .td2:nth-of-type(3):before { content: "Score: "; } .td1:nth-of-type(3), .td2:nth-of-type(3) { left: 11px; bottom: 11px; width: auto; text-align: left; font-size: 14px; font-family: Patrick Hand SC; } /* Type */ .td1[width="50"]:nth-of-type(4), .td2[width="50"]:nth-of-type(4) { top: 11px; right: 11px; width: 30px; font-size: 13px; font-family: Patrick Hand SC; } /* Copyright */ #copyright { font-family: Amatic SC; font-size: 25px; text-shadow: #000 0px 0px 1px; -webkit-font-smoothing: antialiased; margin-top: 0px !important; margin-bottom: 31px; border-radius: 13px; padding: 5px; } #copyright:after { display: none; } /* Cursor */ body { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } a:hover { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } #grand_totals { display: none; } .category_totals { display: none; } .table_headerLink { display: none; } #mal\_control\_strip { display: none !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(1) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(1) a:before { content : "Watching"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(2) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(3) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(4) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(5) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan To Watch"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(6) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(6) a:before { content : "All Anime"; font-size: 16px !important; } |
Dec 26, 2015 4:27 PM
#3385
Kaiwan said: ReplaceMy category title bar is not located in the center in Google Chrome, can you help me out? Thank you in advance! Here is my code: /* Font */ @import url(http://fonts.googleapis.com/css?family=Amatic+SC); @import url(http://fonts.googleapis.com/css?family=Oswald); @import url(http://fonts.googleapis.com/css?family=Patrick+Hand+SC); @import url(http://fonts.googleapis.com/css?family=Cantora+One); /* Cover */ @import url(https://dl.dropbox.com/s/cp0wq4qx7o0opz1/Cover.css); /* Layout */ @import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css); body { background-image: url(http://i.imgur.com/29dyyWE.jpg); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; max-width: 1210px; min-width: 726px; } body { margin: auto !important; } #inlineContent { background-image: url(); } #list_surround { margin: 150px 0px 0px -10px; padding: 0px 10px 10px 10px; width: 100%; border-radius: 20px 20px 0px 0px; box-shadow: 0px 0px 10px #302d2c; } #list_surround >:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw):hover { z-index: 4; } #list_surround >:hover + .hide { z-index: 3; } a { color: #dae5ff !important; font-size: 13px; text-shadow: #000 0px 0px 1px; -webkit-font-smoothing: antialiased; text-decoration: none; font-family: Cantora One; } a:active,a:focus { outline: none; } /* Anime Title */ .animetitle { display: block; visibility: visible; position: absolute; left: 8px; bottom: 41px; padding: 6px; width: 191px; max-height: 100px; overflow: hidden; text-align: center; font-size: 13px; border-radius: 7px; } /* Header Title */ .header_title { background: #3a3635; padding-left: 30px; font-size: 30px; font-weight: bold; text-align: center; text-transform: uppercase; letter-spacing: 6px; text-shadow: -1px 0px #E42C8B, -2px -1px #E42C8B, 1px 0px #A9E42C, 2px 1px #36CCFB; color: #FFF; font-family: Oswald; border-radius: 13px; } .header_title:hover { background: #ff1d3d; } /* Category Title */ .status_selected, .status_not_selected { width: auto; white-space: nowrap; border-radius: 7px; } .status_selected a:before, .status_not_selected a:before { display: block; padding: 0 20px; line-height: 42px; width: 140px; font-size: 16px; font-family: Oswald; } /* Episodes */ td[width="50"] + .td1:nth-of-type(5):before, [width="50"] + .td2:nth-of-type(5):before { content: "Episodes: "; } td[width="50"] + .td1:nth-of-type(5), td[width="50"] + .td2:nth-of-type(5) { right: 11px; bottom: 11px; width: auto; text-align: right; font-size: 14px; font-family: Patrick Hand SC; } /* Numbers */ .td1:first-of-type:before, .td2:first-of-type:before { display: none; } .td1:first-of-type, .td2:first-of-type { top: 11px; left: 11px; width: 30px; font-size: 13px; font-family: Patrick Hand SC; } /* Score */ .td1:nth-of-type(3):before, .td2:nth-of-type(3):before { content: "Score: "; } .td1:nth-of-type(3), .td2:nth-of-type(3) { left: 11px; bottom: 11px; width: auto; text-align: left; font-size: 14px; font-family: Patrick Hand SC; } /* Type */ .td1[width="50"]:nth-of-type(4), .td2[width="50"]:nth-of-type(4) { top: 11px; right: 11px; width: 30px; font-size: 13px; font-family: Patrick Hand SC; } /* Copyright */ #copyright { font-family: Amatic SC; font-size: 25px; text-shadow: #000 0px 0px 1px; -webkit-font-smoothing: antialiased; margin-top: 0px !important; margin-bottom: 31px; border-radius: 13px; padding: 5px; } #copyright:after { display: none; } /* Cursor */ body { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } a:hover { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } #grand_totals { display: none; } .category_totals { display: none; } .table_headerLink { display: none; } #mal\_control\_strip { display: none !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(1) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(1) a:before { content : "Watching"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(2) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(3) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(4) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(5) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan To Watch"; font-size: 16px !important; } #list_surround tab\le:first-of-type[align] td:nth-of-type(6) a { font-size: 0; } #list_surround tab\le:first-of-type[align] td:nth-of-type(6) a:before { content : "All Anime"; font-size: 16px !important; } @import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css); @import url(https://dl.dropbox.com/s/kbj9m7xa43aobyc/LayoutCenterSquare.css); |
Dec 26, 2015 9:54 PM
#3386
I just installed the Boku wa Tomodachi ga Sukunai list layout created by Hahaido. It's working for the most part, but the airing tags are showing up on the line below the applicable anime and the Not Yet Aired tags are wrapping into two lines Here is the code - it is unmodified from Hahaido's original |
Dec 26, 2015 10:21 PM
#3387
@elk change this .animetitle span { display: block; .animetitle span { display: inline-block; .animetitle + small { position: absolute; display: inline-block; right: 694px; margin-top: -4px; padding: 4px; font-family: 'Poiret One', cursive; color: #d6000a !important; font-size: 12px !important; background-color: rgba(238, 237, 193, 1); white-space: nowrap; } |
Dec 26, 2015 11:31 PM
#3388
Replace @import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css); @import url(https://dl.dropbox.com/s/kbj9m7xa43aobyc/LayoutCenterSquare.css); Thank you very much for your help, but when i re-host your css it become like this: If i copy your css to my code, it works perfectly. |
Dec 26, 2015 11:40 PM
#3389
Did you make sure to change the link to your rehosted file? http://myanimelist.net/forum/?topicid=411779 Whatever, it's not too important that you rehost it. If it's making problems, don't bother |
Doomcat55Dec 26, 2015 11:41 PM
Dec 26, 2015 11:50 PM
#3390
Doomcat55 said: Did you make sure to change the link to your rehosted file? http://myanimelist.net/forum/?topicid=411779 Whatever, it's not too important that you rehost it. If it's making problems, don't bother Thanks again, i forgot to edit the import link. Edit: Sorry to bother you again but i just realize that the category links are not selectable anymore, any idea? |
KaiwanDec 27, 2015 12:02 AM
Dec 27, 2015 8:14 AM
#3391
Doomcat55 said: @elk change this .animetitle span { display: block; .animetitle span { display: inline-block; .animetitle + small { position: absolute; display: inline-block; right: 694px; margin-top: -4px; padding: 4px; font-family: 'Poiret One', cursive; color: #d6000a !important; font-size: 12px !important; background-color: rgba(238, 237, 193, 1); white-space: nowrap; } Thanks Doomcat - it worked! |
Dec 27, 2015 9:19 AM
#3392
Hello, Can anyone help me put a box-shadow around the watching, hold, drop, ptw sections? i cant figure it out. layout here: http://myanimelist.net/animelist/vzangetsuha thanks. |
isaychrisDec 27, 2015 9:24 AM
Dec 27, 2015 9:46 AM
#3393
@Kaiwan lol you're not bothering me, that's what this section is for. In your CSS under "Category Title," change this.status_selected a:before, .status_not_selected a:before { display: block; .status_selected a:before, .status_not_selected a:before { display: inline-block; |
Dec 27, 2015 9:58 AM
#3394
Doomcat55 said: @Kaiwan lol you're not bothering me, that's what this section is for. In your CSS under "Category Title," change this .status_selected a:before, .status_not_selected a:before { display: block; .status_selected a:before, .status_not_selected a:before { display: inline-block; Thank you again, it works now. Btw i notice that too, instead of edit the right value i change the width of the "table:first-of-type" to 483.5px lmao, either ways it looks good now. :) |
Dec 27, 2015 2:02 PM
#3395
I have a question cause I don't under stand list designs at all, I've read your tutorial for the design, and the one for the sliding intro, but I really don't understand how to put them together, now if you go to my anime list, you see the intro, without the characters and then the list normal, but when I changed it, it was the intro good, but the list design was gone, I don't understand what to do and was wondering if you could fix it for me.. Here's the css, with the list first and then the sliding intro after /* HELLO, THANK YOU FOR USING MY THEME! - Monotone/Colorful - please don't remove the credits don't use as a base code do not steal or redistribute as your own, I worked hard on this theme. x N A D E K O _ */ @import url(\68 \74 \74 \70 \73 \3a \2f \2f \64 \6c \2e \64 \72 \6f \70 \62 \6f \78 \75 \73 \65 \72 \63 \6f \6e \74 \65 \6e \74 \2e \63 \6f \6d \2f \75 \2f \31 \39 \33 \33 \34 \39 \38 \32 \39 \2f \59 \6f \75 \72 \25 \32 \30 \4c \69 \65 \25 \32 \30 \69 \6e \25 \32 \30 \41 \70 \72 \69 \6c \25 \32 \30 \54 \68 \65 \6d \65 \2f \53 \68 \69 \67 \61 \74 \73 \75 \25 \32 \30 \77 \61 \25 \32 \30 \4b \69 \6d \69 \25 \32 \30 \6e \6f \25 \32 \30 \55 \73 \6f \5f \4c \61 \79 \6f \75 \74 \2e \63 \73 \73);{} /* ANIMATED INTRO'S MAIN BACKGROUND (sliding, for all 5 category pages) Change and adjust the background images in the intro here. */ .header_cw:before{ background-image: url("http://i.imgur.com/siL9m0H.jpg"); background-size: cover; background-position: right bottom; } .header_completed:before{ background-image: url("http://i.imgur.com/0TnJ2oV.png"); background-size: cover; background-position: right bottom; } .header_onhold:before{ background-image: url("http://i.imgur.com/a0tV6Cl.png"); background-size: cover; background-position: right bottom; } .header_dropped:before{ background-image: url("http://i.imgur.com/hBLFRB3.jpg"); background-size: cover; background-position: right bottom; } .header_ptw:before { background-image: url("http://i.imgur.com/glOuYOr.jpg"); background-position: right bottom; background-size: 130%; } /* ANIMATED INTRO LEFT SIDE (images and text) By default, these are the logos and text. The character name is a premade image generated at Cooltext.com. "content:" controls the rest of the text on the left. Padding top % can be lowered to bring the content text above the logo- it can be increased to move the content text down away from the logo. Increase or decrease the top % to lower or raise the logo itself down the page. */ .header_cw span:before{ background: transparent url("http://i.imgur.com/Y91tQfV.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my current anime" !important; color: black !important; font-size: 32px !important; padding-top: 15%; top: 0% !important;} .header_completed span:before{ background: transparent url("http://i.imgur.com/hwTsJoF.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my completed anime" !important; color: black !important; font-size: 32px !important; padding-top: 15%; top: 0% !important;} .header_onhold span:before{ background: transparent url("http://i.imgur.com/mEBTi5l.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my anime on-hold" !important; color: black !important; font-size: 32px !important; padding-top: 15%; top: 0% !important;} .header_dropped span:before{ background: transparent url("http://i.imgur.com/4dUcU6n.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my dropped anime" !important; color: black !important; font-size: 32px !important; padding-top: 15%; top: 0% !important;} .header_ptw span:before { background: transparent url("http://i.imgur.com/U6Fr2xF.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents anime I plan to watch" !important; color: black !important; font-size: 32px !important; padding-top: 15%; top: 0% !important;} /* ANIMATED INTRO RIGHT SIDE (renders) Background-size is the amount of percentage you see of the render. */ .header_cw span:after{ background: transparent url("http://i.imgur.com/1ceDA2E.png") no-repeat; background-size: 50%; content: ""; color: black !important; font-size: 32px !important; } .header_completed span:after{ background: transparent url("http://i.imgur.com/ADwkSH8.png") no-repeat; background-size: 50%; content: ""; color: black !important; font-size: 32px !important; } .header_onhold span:after{ background: transparent url("http://i.imgur.com/jJjeAGX.png") no-repeat; background-size: 50%; content: ""; color: black !important; font-size: 32px !important; } .header_dropped span:after{ background: transparent url("http://i.imgur.com/gPTEuyP.png") no-repeat; background-size: 55%; content: ""; color: black !important; font-size: 32px !important; } .header_ptw span:after{ background: transparent url("http://i.imgur.com/3tVfecX.png") no-repeat; background-size: 50%; content: ""; color: black !important; font-size: 32px !important; } /* ANIMATED INTRO OTHER SETTINGS The first set of codes is for the background seen behind the animations. The second set is for the left side of the animated intro. The third set controls the intro on the right. the #s codes at the bottom after mymove codes control the timing of the animations. Lower or raise them to make the animations longer. */ .header_cw:before, .header_completed:before, .header_onhold:before, .header_dropped:before, .header_ptw:before { background-color: black; background-attachment: fixed; background-repeat: no-repeat; height: 100% !important; left: 0 !important; position: fixed !important; top: 0 !important; width: 100% !Important; z-index: 101; color: transparent; content: ""; pointer-events: none; opacity: 0; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:before, .header_completed span:before, .header_onhold span:before, .header_dropped span:before, .header_ptw span:before { position: fixed; text-align: center; font-family: Century Gothic; text-shadow: 1px 2px 3px white; height: 100%; width: 45%; left: 0 !important; pointer-events: none; opacity: 0; z-index: 110 !Important; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:after, .header_completed span:after, .header_onhold span:after, .header_dropped span:after, .header_ptw span:after { position: fixed; height: 100%; width: 100%; right: 0 !important; top: 0 !important; z-index: 110; pointer-events: none; opacity: 0; background-position: 100% 0; padding-top: 20%; -moz-animation:mymove2 5s; /* Firefox */ -webkit-animation:mymove2 5s; /* Safari and Chrome */ } @-moz-keyframes mymove /* Firefox */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } @-moz-keyframes mymove2 /* Firefox */ { 0% {opacity: 1; background-position: -100% 0;} 40% {opacity: 1; background-position: 100% 0;} 80% {opacity: 1} 95% {opacity: 1} 99% {opacity: 0} } @-webkit-keyframes mymove /* Safari and Chrome */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } @-webkit-keyframes mymove2 /* Safari and Chrome */ { 0% {opacity: 1; background-position: 0% 0;} 40% {opacity: 1; background-position: 100% 0;} 80% {opacity: 1} 95% {opacity: 1} 99% {opacity: 0} } #copyright { z-index: 10000 !important; position: relative; } |
Dec 27, 2015 7:50 PM
#3396
Does anyone know how to fix this ? but in certain cases, it works on both browsers I use this font. do I have to replace it with another font, or can I fix it without changing my font ? shadow7755 said: I have a question cause I don't under stand list designs at all, I've read your tutorial for the design, and the one for the sliding intro, but I really don't understand how to put them together, now if you go to my anime list, you see the intro, without the characters and then the list normal, but when I changed it, it was the intro good, but the list design was gone, I don't understand what to do and was wondering if you could fix it for me.. your list seems fine, what kind of intro you want to change ? isaychris said: Hello, Can anyone help me put a box-shadow around the watching, hold, drop, ptw sections? i cant figure it out. layout here: http://myanimelist.net/animelist/vzangetsuha thanks. I'd tried similar thing on my list, but never succeeded. My tables seemed unnatural. but, "border-image" could be used as a tricky method #list_surround > table:not([align]) { border-right-width: 1px; border-image: url('http://i.imgur.com/7IyAki0.png') 0 12 / 0 12px / 0 12px round; } |
Dec 27, 2015 8:52 PM
#3397
D_Cuy said: And it looks even weirder to me (MBP w/ Retina): ChromeDoes anyone know how to fix this ? Firefox I think it's just not possible bc of the browser rendering differences - in fact, if you look closely at the bottom right of your truck, you'll notice that it didn't work then either. Your best bet is probably to use background-image |
Dec 27, 2015 10:51 PM
#3398
My list isn't fine, the sliding intro doesn't have the characters appearing when you go it just has the house and then the list, if you change it the sliding intro is perfect but the list disappears |
Dec 28, 2015 1:09 AM
#3399
shadow7755 said: My list isn't fine, the sliding intro doesn't have the characters appearing when you go it just has the house and then the list, if you change it the sliding intro is perfect but the list disappears Add this to the bottom, then the sliding characters, text, and images come in. But those intros are not intended for all anime pages. Or else you get every intro at once. Its for lists that use one category page at a time. But there might have been an All Anime intro you add in, tho it was buggy iirc br { display:block !imortant; pointer-events: none !important;} .header_title { display: block !important; pointer-events: none !important; color: transparent !important;} .header_cw, .header_complete, .header_onhold, .header.dropped, .header_ptw{ pointer-events: none;} |
Dec 28, 2015 4:45 PM
#3400
Thanks Shihsio-kun! |
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 |