Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 66 67 [68] 69 70 » ... Last »
Dec 12, 2015 6:51 PM

Offline
Nov 2013
21
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

Offline
Jul 2015
820
betterthansalad said:
Does anyone else have an idea on how I could separate what I liked from what I disliked?
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 ^^
kookie224 said:
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.
Find this code and add the line in red:

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

Offline
May 2014
110
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
Offline
Nov 2015
78
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
Offline
Nov 2015
78
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);
with
@import "http://mal-image.appspot.com/custom/betterthansalad/5";
and it will not display anime with a score below 5.


Best MAL Generator tool!
Dec 13, 2015 7:59 PM

Offline
Jul 2015
820
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

Offline
Jul 2013
381
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

Offline
Apr 2015
4
I'm using this layout


but there isn't back to my profile add-on like this


How can I fix this?
Dec 14, 2015 9:37 AM

Offline
Jul 2015
820
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?
Uncrowned_King said:
I'm using this layout


but there isn't back to my profile add-on like this


How can I fix this?
Remove this part of your code:
#mal_cs_listinfo,#mal_cs_links,#mal_cs_otherlinks,#mal_cs_powered {
display:none
}
Dec 14, 2015 10:57 AM

Offline
Oct 2009
7734
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

Offline
Jul 2013
381
Serhiyko said:
How do I make this style to display covers, but have a functioning "More" button: [url]http://pastebin.com/UMMGNfVe[/url]?


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
instead of
.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

Offline
Jul 2015
820
Serhiyko said:
For the "more" section, replace
/* NAVBAR */
@import "http://googledrive.com/host/0Bz6PekZ3y6B9WkxISjNLOWVPeTg/";
with
/* NAVBAR */
@import"https://dl.dropbox.com/s/um618q4x7o8v4xh/NAVBAR.css";
I would appreciate if you rehosted the new code on your own Dropbox: http://myanimelist.net/forum/?topicid=411779
Dec 14, 2015 2:17 PM

Offline
Oct 2009
7734
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/";
with
/* 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
[size=90]

Thanks, one more thing though. There was an animation:

But since I don't use .hide now, what should I use?
SerhiykoDec 15, 2015 2:55 AM
Dec 14, 2015 4:03 PM

Offline
Jul 2015
820
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

Offline
Jul 2013
381
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
[size=90]

Thanks, one more thing though. There was an animation:

But since I don't use .hide now, what should I use?


keep this on top
@keyframes Covers {
  from {
    left: -150px;
  }
  to {
    left: 36px;
  }
}
and add this to tr:hover .animetitle:before
animation: Covers 0.7s ease-out;
animation-fill-mode: forwards;
visibility: visible;
opacity: 1;
not sure if this will really is going to work, i'm not testing anything.
Dec 15, 2015 2:57 AM

Offline
Oct 2009
7734
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
Offline
Oct 2010
2
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

Offline
Jul 2015
820
@karaageteba add this to the bottom of your CSS:
form[action*="logout"] {
    display: inline;
}
Dec 15, 2015 9:23 PM
Offline
Oct 2010
2
Doomcat55 said:
@karaageteba add this to the bottom of your CSS:
form[action*="logout"] {
    display: inline;
}

Thank you!
Dec 17, 2015 8:51 AM

Offline
Dec 2015
14
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
Dec 17, 2015 10:21 AM

Offline
Jul 2015
820
CryoPhantom said:
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
Add to the bottom of your CSS:
[class^=td]:nth-of-type(6) {display: none;}
Dec 19, 2015 6:34 AM

Offline
Nov 2009
1632
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

Offline
Jul 2013
381
Doomcat55 said:
CryoPhantom said:
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
Add to the bottom of your CSS:
[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
Offline
Apr 2014
1
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:


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

Offline
Jul 2015
820
Plateau95 said:
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:


I would ask the original owner of this code (reddit user) but it seems he is no longer active. Thanks in advance.
Remove the text in red (including the comma):
#grand_totals, .category_totals, [class^=status_], [style^="float: right"] {
display: none;
}
Dec 22, 2015 3:59 PM

Offline
Nov 2009
1632
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

Offline
Jul 2015
820
Takana_no_Hana said:
Hi, are there any other ways to add a media player (youtube link) not using anime cover page section?
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)
Dec 22, 2015 5:39 PM

Offline
Nov 2009
1632
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?
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)

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

Offline
Jul 2015
820
Takana_no_Hana said:
Doomcat55 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)

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).
Which show? Can you share a screenshot of the bbcode?

Also, before you can see the video, you'll need to reenable the more section. Remove these codes from your CSS:
After that, making the media player will be much easier
Dec 22, 2015 7:14 PM

Offline
Nov 2009
1632
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

Offline
Jul 2015
820
Takana_no_Hana said:
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?
Unfortunately not, sorry - that's just how the site is built.

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
width 425px, height 100px = once the video starts, you get the pause/play controls and scrollbar but without most of the video
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
Dec 22, 2015 9:59 PM

Offline
Nov 2009
1632
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

Offline
Jul 2015
820
Takana_no_Hana said:
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.
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;"
Dec 26, 2015 12:48 AM

Offline
Feb 2015
4608
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:

Dec 26, 2015 4:27 PM

Offline
Jul 2015
820
Kaiwan said:
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:

Replace
@import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css);
with
@import url(https://dl.dropbox.com/s/kbj9m7xa43aobyc/LayoutCenterSquare.css);
Would appreciate if you rehosted the file
Dec 26, 2015 9:54 PM
elk sensei

Offline
Oct 2013
8777
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

Offline
Jul 2015
820
@elk change this
.animetitle span { 
	display: block;
to
.animetitle span { 
	display: inline-block;
and add the line in red to the following section:
.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

Offline
Feb 2015
4608
Replace
@import url(https://dl.dropbox.com/s/zshkidole270o0g/Layout.css);
with
@import url(https://dl.dropbox.com/s/kbj9m7xa43aobyc/LayoutCenterSquare.css);
Would appreciate if you rehosted the file


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

Offline
Jul 2015
820
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

Offline
Feb 2015
4608
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
elk sensei

Offline
Oct 2013
8777
Doomcat55 said:
@elk change this
.animetitle span { 
	display: block;
to
.animetitle span { 
	display: inline-block;
and add the line in red to the following section:
.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

Offline
Jan 2012
58
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

Offline
Jul 2015
820
@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;
to
.status_selected a:before, .status_not_selected a:before {
display: inline-block;
Also, I noticed that the categories still aren't perfectly centered in Chrome. You can nudge them with the "right" value at the very top of the import codes from before; 56% or so should work
Dec 27, 2015 9:58 AM

Offline
Feb 2015
4608
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;
to
.status_selected a:before, .status_not_selected a:before {
display: inline-block;
Also, I noticed that the categories still aren't perfectly centered in Chrome. You can nudge them with the "right" value at the very top of the import codes from before; 56% or so should work


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
Offline
Jan 2015
4
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

Offline
May 2014
110
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

Offline
Jul 2015
820
D_Cuy said:
Does anyone know how to fix this ?
And it looks even weirder to me (MBP w/ Retina): Chrome
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
Offline
Jan 2015
4
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

Offline
Feb 2010
12646
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
Offline
Jan 2015
4
Thanks Shihsio-kun!
Reply Disabled for Non-Club Members
Pages (159) « First ... « 66 67 [68] 69 70 » ... Last »

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 help

threat - 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 Fixes

Shishio-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 Lists

YasminaRegina - Jul 25

2 by YasminaRegina »»
Jul 26, 1:02 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login