Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 27 28 [29] 30 31 » ... Last »
Nov 28, 2013 3:13 PM

Online
Feb 2010
12634
Dark_Chaos said:
Shishio-kun said:
Dark_Chaos said:
When someone hovers over a title in my list, the covers pop up, but is there any way to make anything else pop up along with them? I looked through some of the tutorials on MAL, but didn't find anything about this, at least I don't think I did anyway.


Pretty much anything thats already on the row can be customized in such a way, and it can be made to look like other parts of the page pop up with the right set of illusions and tricks. Tho you must have the right set of codes depending on what it is, it can get extremely complicated. Most people haven't bothered with coding other parts of the row.

Tags was a similar pop up feature with the premade layout you customized.

Ahh, I see, but I don't think I meant anything else on the row. I meant like another image, like this example here, if you get what I mean. Sorry for not being clear at first. http://i.imgur.com/iUNdjpO.jpg


So do you want the same pic to pop up on every row or do you want specific pics to pop up on specific rows? Both things are possible but done differently.
Nov 29, 2013 2:23 AM

Offline
Nov 2013
25
Hey Guys! Glad to join Your club.
Please help a little on my anime list ( located here: http://myanimelist.net/animelist/FantomX )

I can't center "FantomX's Anime List" horizontally. Hope You guys can help.

REGARDS
FantomX
Nov 29, 2013 2:59 AM

Offline
Jan 2012
1578
Edit your #list_surround:before code

#list_surround:before {
display:block;
width: 100%;
content: "FantomX's Anime List";
top: -5px;
color: rgb(70,70,70);
font-size: 4em;
text-align: center;
white-space: nowrap;
}
Nov 29, 2013 3:11 AM

Offline
Nov 2013
25
Hahaido said:
Edit your #list_surround:before code

#list_surround:before {
display:block;
width: 100%;
content: "FantomX's Anime List";
top: -5px;
color: rgb(70,70,70);
font-size: 4em;
text-align: center;
white-space: nowrap;
}


Thanks a lot Hahaido. It works! cheers! :D
Nov 29, 2013 6:29 AM

Offline
May 2013
4712
Shishio-kun said:
Dark_Chaos said:
Shishio-kun said:
Dark_Chaos said:
When someone hovers over a title in my list, the covers pop up, but is there any way to make anything else pop up along with them? I looked through some of the tutorials on MAL, but didn't find anything about this, at least I don't think I did anyway.


Pretty much anything thats already on the row can be customized in such a way, and it can be made to look like other parts of the page pop up with the right set of illusions and tricks. Tho you must have the right set of codes depending on what it is, it can get extremely complicated. Most people haven't bothered with coding other parts of the row.

Tags was a similar pop up feature with the premade layout you customized.

Ahh, I see, but I don't think I meant anything else on the row. I meant like another image, like this example here, if you get what I mean. Sorry for not being clear at first. http://i.imgur.com/iUNdjpO.jpg


So do you want the same pic to pop up on every row or do you want specific pics to pop up on specific rows? Both things are possible but done differently.

Specific, so like when I hover over Sword Art Online, it looks like this http://i.imgur.com/iUNdjpO.jpg , but when I hover over Dragon Crisis, it looks like this http://i.imgur.com/GJdWxPV.jpg

My apologies, as I realize this must be quite difficult to do, but if I can do it, it'd be better than the tags section there that I had removed.
Nov 29, 2013 12:38 PM

Online
Feb 2010
12634
Dark_Chaos said:

Specific, so like when I hover over Sword Art Online, it looks like this http://i.imgur.com/iUNdjpO.jpg , but when I hover over Dragon Crisis, it looks like this http://i.imgur.com/GJdWxPV.jpg


Ah ok. I don't really feel like explaining it all but basically there's probably several ways to do this but this comes to mind for me as the easiest way:

First use this new import in addition to the others you have (paste it under the other imports).

@import "https://dl.dropboxusercontent.com/u/78340470/Club%20layouts/Featured/pyschopassdoublepic.css";



When you have that in you can start adding extra pics to titles with codes like this below. This one is for Naruto Shi's second pic (will have a pic of Sasuke used in his bio on this site and appear under the cover). You can use whatever background image url you want tho.

.animetitle[href*="/1735/"] span:before {
background: url(http://cdn.myanimelist.net/images/characters/9/131317.jpg);
margin-left: 5px !important;
}


You can change the background image out, and move the pic with margin left. To customize another title you use the same codes except change the number in the selector name. To get the number for an anime, look at the number in its anime link or address here on MAL, in red here:

http://myanimelist.net/anime/1735/Naruto:_Shippuuden



So for example to add an extra pic to Bleach you'd use

.animetitle[href*="/269/"] span:before {
background: url(http://cdn.myanimelist.net/images/characters/12/97695.jpg);
margin-left: 5px !important;
}


cuz Bleach's address on MAL has 269 in it:
http://myanimelist.net/anime/269/Bleach

Hope thats all clear, let me know if not or doesn't work (leave in code please).

edit: had to change something I forgot first time/works for all anime titles now
Shishio-kunNov 29, 2013 1:38 PM
Nov 29, 2013 4:33 PM

Offline
May 2013
4712
Shishio-kun said:
Dark_Chaos said:

Specific, so like when I hover over Sword Art Online, it looks like this http://i.imgur.com/iUNdjpO.jpg , but when I hover over Dragon Crisis, it looks like this http://i.imgur.com/GJdWxPV.jpg


Ah ok. I don't really feel like explaining it all but basically there's probably several ways to do this but this comes to mind for me as the easiest way:

First use this new import in addition to the others you have (paste it under the other imports).

@import "https://dl.dropboxusercontent.com/u/78340470/Club%20layouts/Featured/pyschopassdoublepic.css";



When you have that in you can start adding extra pics to titles with codes like this below. This one is for Naruto Shi's second pic (will have a pic of Sasuke used in his bio on this site and appear under the cover). You can use whatever background image url you want tho.

.animetitle[href*="/1735/"] span:before {
background: url(http://cdn.myanimelist.net/images/characters/9/131317.jpg);
margin-left: 5px !important;
}


You can change the background image out, and move the pic with margin left. To customize another title you use the same codes except change the number in the selector name. To get the number for an anime, look at the number in its anime link or address here on MAL, in red here:

http://myanimelist.net/anime/1735/Naruto:_Shippuuden



So for example to add an extra pic to Bleach you'd use

.animetitle[href*="/269/"] span:before {
background: url(http://cdn.myanimelist.net/images/characters/12/97695.jpg);
margin-left: 5px !important;
}


cuz Bleach's address on MAL has 269 in it:
http://myanimelist.net/anime/269/Bleach

Hope thats all clear, let me know if not or doesn't work (leave in code please).

edit: had to change something I forgot first time/works for all anime titles now

Yep, this was the effect I wanted! Thank you, Shishio-kun :)
Nov 30, 2013 1:18 AM

Offline
Jul 2012
1912
I just started editing my list today, so I'm a bit new to this. I have spent all day learning though. I have a question about my background that might be a little hard to explain.. Basically, instead of: background-attachment:scroll/fixed, I was wondering if there was a way to sorta get a mixed of both?

What I want is while I'm scrolling up, my list will look like this and stay that way as I'm scrolling upward:
http://farm8.staticflickr.com/7447/11129692696_d89e131c97_o.png
http://farm8.staticflickr.com/7328/11129695036_5788431be4_o.png

And while I'm scrolling down, my list will look like this and stay like that while I'm scrolling downward
http://farm4.staticflickr.com/3684/11129697606_9440541f43_o.png
http://farm6.staticflickr.com/5538/11129736764_0566f6126f_o.png

Or if i could have Mikasa's whole body show without her looking smushed, that'd be great!
AndoNov 30, 2013 1:46 AM
Nov 30, 2013 2:34 AM

Offline
Nov 2013
25
Hey Guys! On my anime list (http://myanimelist.net/animelist/FantomX), when I hover the mouse pointer over the "HEADERS" (watching, completed etc), I see a strange "COLOR CHANGE/FADE". I can't seem to fix it.
I hope You can help.

THANKS
Nov 30, 2013 2:36 AM

Offline
Jul 2010
93
Ando- said:
I just started editing my list today, so I'm a bit new to this. I have spent all day learning though. I have a question about my background that might be a little hard to explain.. Basically, instead of: background-attachment:scroll/fixed, I was wondering if there was a way to sorta get a mixed of both?

What I want is while I'm scrolling up, my list will look like this and stay that way as I'm scrolling upward:
http://farm8.staticflickr.com/7447/11129692696_d89e131c97_o.png
http://farm8.staticflickr.com/7328/11129695036_5788431be4_o.png

And while I'm scrolling down, my list will look like this and stay like that while I'm scrolling downward
http://farm4.staticflickr.com/3684/11129697606_9440541f43_o.png
http://farm6.staticflickr.com/5538/11129736764_0566f6126f_o.png

Or if i could have Mikasa's whole body show without her looking smushed, that'd be great!

I don't know of any way to do what you want with css. You could try to find your background with 16:9 ratio, or you could try this:
background-attachment:fixed;
background-image:url(http://farm4.staticflickr.com/3764/11127709906_8162793242_o.jpg);
background-size:contain;
background-position:center;
background-repeat:no-repeat;
background-color:#222 !important;
It isn't perfect, but that's all I can do.
Nov 30, 2013 6:40 AM

Offline
Jul 2013
381
Ando- said:
I just started editing my list today, so I'm a bit new to this. I have spent all day learning though. I have a question about my background that might be a little hard to explain.. Basically, instead of: background-attachment:scroll/fixed, I was wondering if there was a way to sorta get a mixed of both?

What I want is while I'm scrolling up, my list will look like this and stay that way as I'm scrolling upward:
http://farm8.staticflickr.com/7447/11129692696_d89e131c97_o.png
http://farm8.staticflickr.com/7328/11129695036_5788431be4_o.png

And while I'm scrolling down, my list will look like this and stay like that while I'm scrolling downward
http://farm4.staticflickr.com/3684/11129697606_9440541f43_o.png
http://farm6.staticflickr.com/5538/11129736764_0566f6126f_o.png

Or if i could have Mikasa's whole body show without her looking smushed, that'd be great!


I believe you should add background-position: top center; to the body selector.
Nov 30, 2013 9:33 AM

Offline
Nov 2013
25
Guys, how can I achieve the ZOOM EFFECT (http://myanimelist.net/forum/?topicid=626173) when I hover mouse pointer over anime title. So, it should look like its a simple list but when we hover mouse over any anime title, it should show the cover and zoom it.

REGARDS
FantomX
Nov 30, 2013 2:31 PM

Offline
Jul 2012
1912
dzikibambus said:
I don't know of any way to do what you want with css. You could try to find your background with 16:9 ratio, or you could try this:
background-attachment:fixed;
background-image:url(http://farm4.staticflickr.com/3764/11127709906_8162793242_o.jpg);
background-size:contain;
background-position:center;
background-repeat:no-repeat;
background-color:#222 !important;
It isn't perfect, but that's all I can do.

kuronekodesu said:
I believe you should add background-position: top center; to the body selector.

Thanks for the help! I actually fixed my problem with the help of the two BG image trick :D


I used two of the same images and put them both "right-center" but reversed the 2nd image and repeated it. It's not perfect, but it's close enough for me :)
Nov 30, 2013 4:44 PM

Online
Feb 2010
12634
FantomX said:
Guys, how can I achieve the ZOOM EFFECT (http://myanimelist.net/forum/?topicid=626173) when I hover mouse pointer over anime title. So, it should look like its a simple list but when we hover mouse over any anime title, it should show the cover and zoom it.

REGARDS
FantomX


That was already asked two days ago and I just answered it in that topic.
Dec 1, 2013 1:30 AM

Offline
Nov 2013
25
Guys, how to combine LIST HIGHLIGHT with ANIME TITLE's LINK?
Like, if I hover over a certain anime and click (click not on anime title, but anywhere in the highlighted line), it should open anime info.

REGARDS
FantomX
Dec 1, 2013 5:19 PM

Offline
Mar 2013
264
I don't know if this just happens to me or if somebody else can view it but lately my list has not been able to generate all the anime covers. It shows all of them in the "Watching" category and goes up to the 'D' letter in the "Completed" category but after that it stops showing any covers at all.
Dec 1, 2013 6:57 PM

Offline
Apr 2012
644
Hello, how can i change the username on the top as my username in my anime list lay-out?
Dec 1, 2013 10:15 PM

Offline
Jan 2012
1578
That is an image. First you need the font current username has written with. And make a new image in GIMP or Photoshop

F_E_A_R said:
I don't know if this just happens to me or if somebody else can view it but lately my list has not been able to generate all the anime covers. It shows all of them in the "Watching" category and goes up to the 'D' letter in the "Completed" category but after that it stops showing any covers at all.

I can see all covers
Dec 2, 2013 12:40 AM

Offline
Apr 2012
644
Hahaido said:
That is an image. First you need the font current username has written with. And make a new image in GIMP or Photoshop


What if i try to delete that image instead?
Dec 2, 2013 12:46 AM

Offline
Jan 2012
1578
Of course you can. Here is the image location:

#list_surround .header_title {
background:url(http://ipic.su/img/img7/fs/cooltext1043220838.1369232913.png) no-repeat scroll 0 0 transparent;
height:425px;
left:-200px;
padding:25px;
position:absolute;
top:-425px;
width:900px;
}
Dec 2, 2013 1:14 AM

Offline
Apr 2012
644
Hahaido said:
Of course you can. Here is the image location:

#list_surround .header_title {
background:url(http://ipic.su/img/img7/fs/cooltext1043220838.1369232913.png) no-repeat scroll 0 0 transparent;
height:425px;
left:-200px;
padding:25px;
position:absolute;
top:-425px;
width:900px;
}


Thank you very much.
Dec 2, 2013 3:01 AM

Offline
Jan 2012
1578
You can also try something like this:
Dec 2, 2013 3:12 AM

Offline
Apr 2012
644
Oh my! A thousand thanks!
Dec 2, 2013 4:52 AM

Offline
Mar 2013
264
Hahaido said:
That is an image. First you need the font current username has written with. And make a new image in GIMP or Photoshop

F_E_A_R said:
I don't know if this just happens to me or if somebody else can view it but lately my list has not been able to generate all the anime covers. It shows all of them in the "Watching" category and goes up to the 'D' letter in the "Completed" category but after that it stops showing any covers at all.

I can see all covers


Really? I've tried but it always goes to the letter 'D' and then stops. But it's not just the covers. It's also the frame where the covers are supposed to show up. Normally the frame would still show up, only completely gray since it would have no cover. Could something be wrong with the code?

These pictures show what I see in my list:
http://i.imgur.com/lbKr6UG.png
http://i.imgur.com/EzlXTvp.png

My Code:
Dec 2, 2013 10:24 AM

Offline
Nov 2011
244
Hi. :)

It is possible to change the tags input ?
Dec 2, 2013 3:55 PM

Online
Feb 2010
12634
Kezian said:
Hi. :)

It is possible to change the tags input ?


You mean the white box and text in it, right? The selector I have used for that is .inputtext. I can't test it with your CSS on another list for some reason tho, so let me know if it doesn't work pls. btw your list is amazingly well done
Dec 2, 2013 4:07 PM

Online
Feb 2010
12634
F_E_A_R said:
I don't know if this just happens to me or if somebody else can view it but lately my list has not been able to generate all the anime covers. It shows all of them in the "Watching" category and goes up to the 'D' letter in the "Completed" category but after that it stops showing any covers at all.


I don't see any issue at all either; it looks and acts perfectly fine. What you're talking about has never come up before from what I recall as well so I don't have any answers to that.

I think it may computer or internet related. I would be really surprised if it was code related since you never had the problem before. What I would do is try to narrow down the issue as much as you can, this usually fixes such problems along the way. Try these different options and see if you still notice the problem. It doesn't matter what order you try them in, they're just suggestions.

1. log out and check from logged out perspective
2. look at list in other browsers
3. clear cookies and cache in main browser (this will clear your saved passwords and stuff so be careful doing this), refresh page to reload all parts of your list and refresh again
4. SAVE your CSS to notepad and then try a similar CSS with covers to see if they stop loading
5. Change the import address name. You do this by renaming the document in dropbox then changin the name of the import here on MAL to that.
Dec 2, 2013 5:14 PM

Offline
Mar 2013
264
Shishio-kun said:
I don't see any issue at all either; it looks and acts perfectly fine. What you're talking about has never come up before from what I recall as well so I don't have any answers to that.

I think it may computer or internet related. I would be really surprised if it was code related since you never had the problem before. What I would do is try to narrow down the issue as much as you can, this usually fixes such problems along the way. Try these different options and see if you still notice the problem. It doesn't matter what order you try them in, they're just suggestions.

1. log out and check from logged out perspective
2. look at list in other browsers
3. clear cookies and cache in main browser (this will clear your saved passwords and stuff so be careful doing this), refresh page to reload all parts of your list and refresh again
4. SAVE your CSS to notepad and then try a similar CSS with covers to see if they stop loading
5. Change the import address name. You do this by renaming the document in dropbox then changin the name of the import here on MAL to that.


I've tried all of your suggestions and I'm a bit lost on what the real problem here is...
1. From a logged out perspective, I still get the same thing: frame and covers lost after the 'D' letter;
2. In Internet Explorer, the list can be read just fine with no problems at all;
3. In Google Chrome, my main browser, I've cleared cookies and cache, while still keeping my saved passwords, then logged out, logged in again and refreshed my list. Same result: frame and covers gone after 'D'.
4. I tried the Square Layout and it works just fine in Google Chrome;
5. I've changed the address name. No changes.

Is there any other possible way to try and fix this? I find it really strange it only happens in one browser!
Dec 2, 2013 5:23 PM

Online
Feb 2010
12634
FantomX said:
Guys, how to combine LIST HIGHLIGHT with ANIME TITLE's LINK?
Like, if I hover over a certain anime and click (click not on anime title, but anywhere in the highlighted line), it should open anime info.

REGARDS
FantomX



From what I understand you want to click anywhere on the row when its highlighted and be taken to the anime info page. You need to use one of your anime title link selectors and stretch it out over the row. Then you put the highlight effect in the hover version of teh same code. Example:

.animetitle span:before {
content: "";
background: transparent;
color: transparent;
height: 20px;
position: absolute;
width: 950px;
margin-left: -30px;
}


.animetitle span:hover:before {
content: "";
background: rgba(255, 0, 0, .5);
}


You'll have to customize it for your own rows and preference. You can use other .animetitle selectors besides animetitle span:before but may need to adjust the animetitle afterwards.
Dec 2, 2013 5:52 PM

Online
Feb 2010
12634
F_E_A_R said:

Is there any other possible way to try and fix this? I find it really strange it only happens in one browser!


Ok I actually saw the problem for myself in Chrome just now. It is most definitely a Chrome issue.

It stops at different points for me other than at "D" tho. I tried to reproduce the effect on my list with your CSS but the problem doesn't show up for me, so I can't narrow down if its a specific part of your code on my own (its probably cuz we have different animes). Also when I use the web inspector in Chrome it loads all the covers automatically, so I don't think I can use that to narrow down the problem either.

First try this: replace your whole CSS with this and check in Chrome after. Your whole list will have a white background and only load covers on hover over. This is your CSS broken down to just the hover code and cover import.

@import "https://dl.dropboxusercontent.com/u/69678791/animeList.css";

:hover + .hide {
background-size: cover;
left: 990px;
top: 110px;
height: 300px;
width: 210px;
padding-bottom: 0px;
border-style: solid;
border-color: white;
border-top: 1px solid white;;
border-left: 1px solid white;
border-right: 1px solid white;
border-bottom: 1px solid white;
border-radius: 25px 25px 25px 25px;
background-color: rgba(165, 165, 165, 0.75);
background-position: center 50% !important;
background-repeat: no-repeat !Important;
display: block !important;
position: fixed;
}



If the covers still stop loading in Chrome after that, then we know the fault is in this import or hover+hide and can try to fix from there. If the covers do load with this CSS setup... then the fault is probably in a random part of your CSS that somehow stops covers from loading. There are ways to narrow it down from there too. Just try this first tho.
Dec 2, 2013 6:01 PM

Offline
Mar 2013
264
Shishio-kun said:


Ok I actually saw the problem for myself in Chrome just now. It is most definitely a Chrome issue.

It stops at different points for me other than at "D" tho. I tried to reproduce the effect on my list with your CSS but the problem doesn't show up for me, so I can't narrow down if its a specific part of your code on my own (its probably cuz we have different animes). Also when I use the web inspector in Chrome it loads all the covers automatically, so I don't think I can use that to narrow down the problem either.

First try this: replace your whole CSS with this and check in Chrome after. Your whole list will have a white background and only load covers on hover over. This is your CSS broken down to just the hover code and cover import.

@import "https://dl.dropboxusercontent.com/u/69678791/animeList.css";

:hover + .hide {
background-size: cover;
left: 990px;
top: 110px;
height: 300px;
width: 210px;
padding-bottom: 0px;
border-style: solid;
border-color: white;
border-top: 1px solid white;;
border-left: 1px solid white;
border-right: 1px solid white;
border-bottom: 1px solid white;
border-radius: 25px 25px 25px 25px;
background-color: rgba(165, 165, 165, 0.75);
background-position: center 50% !important;
background-repeat: no-repeat !Important;
display: block !important;
position: fixed;
}



If the covers still stop loading in Chrome after that, then we know the fault is in this import or hover+hide and can try to fix from there. If the covers do load with this CSS setup... then the fault is probably in a random part of your CSS that somehow stops covers from loading. There are ways to narrow it down from there too. Just try this first tho.


I've replaced the code and yup, it's still the same: after 'D', no more covers. It stopped once for me after 'B' too. It's not entirely linear. After the letter 'D' it still reads the Soul Eater cover, for example.
Dec 2, 2013 6:23 PM

Offline
Nov 2011
244
Shishio-kun said:
You mean the white box and text in it, right? The selector I have used for that is .inputtext.
Perfect ! Now it looks like this. Thanks.

Shishio-kun said:
btw your list is amazingly well done
Arigato gozaimasu ! :)
Dec 2, 2013 7:15 PM

Online
Feb 2010
12634
F_E_A_R said:


I've replaced the code and yup, it's still the same: after 'D', no more covers. It stopped once for me after 'B' too. It's not entirely linear. After the letter 'D' it still reads the Soul Eater cover, for example.


OK thank you. I can actually recreate the problem now on my own list, so you can turn your list back to normal. I have no idea what it is or what part of the coding is causing that, but it does it on long lists in Chrome with that hover code and #more CSS. I'll post back here and on front page with the other updates about it later whether or not I can find a solution. This is really bad lol.


edit: What I know now: MAL page simply does not load

:hover + .hide

in Chrome after a certain number of animes (# depending on the page I think).
Shishio-kunDec 2, 2013 7:41 PM
Dec 2, 2013 9:57 PM

Offline
Jan 2012
1578
How can I reproduce the problem? I can't see any issues in Chrome
Dec 2, 2013 10:27 PM

Online
Feb 2010
12634
Hahaido said:
How can I reproduce the problem? I can't see any issues in Chrome


At this moment you can see the issue on FEAR's list in Chrome
http://myanimelist.net/animelist/F_E_A_R&status=2&order=0

You must scroll down to the lower half of covers. For me, they will almost never load even after refreshing the page many times. It always stops at titles starting with G for me and with D for him. Make sure you have your add ons and tools turned off in Chrome, because inspecting the layout in Chrome removes the bug as well!

And to reproduce the problem apply either of these codes by themselves to a long list page, and you must load the page manually to look.

Both me and FEAR stopped seeing covers when using this. You would probably want to replace the import CSS with your own, but it doesn't matter since after a certain number of titles we both stopped seeing covers and hover+hide.




This one doesn't have covers but shows that hover + hide doesn't work in Chrome on long lists, at least it doesn't for me. The red rectangle will stop showing up over anime titles at a certain point.



If I cant find an alternative selector I will probably phase out using #more for this effect and replace it with a "hover" CSS type based on animetitle CSS which is more reliable. Might be better to phase it out anyways and replace it in all layouts and tutorials, a complicated solution might not be the best fix in long run for novice users
Dec 2, 2013 10:31 PM

Online
Feb 2010
12634
btw random covers will show up below the "cut off" point but the other covers won't load till you inspect page or something

Also I was thinking it might be related to a table or page height setting not recognized in Chrome, since it stops at certain heights; that is a long shot tho I am only making guesses at solutions lol
Dec 2, 2013 10:38 PM

Offline
Jan 2012
1578
I've checked his list twice, I have no addons installed in Chrome, but I can see all covers
Do you have latest Chrome version?
HahaidoDec 2, 2013 10:46 PM
Dec 2, 2013 11:29 PM

Online
Feb 2010
12634
Hahaido said:
I've checked his list twice, I have no addons installed in Chrome, but I can see all covers
Do you have latest Chrome version?


Yes I had the latest, and still reinstalled it after reading your post and nothing changed...

But then success! After reading your post about turned off extensions I double checked mine and I noticed Avast Antivirus extension was still on (thought I turned them all off, strange..). It is definitely the reason and I never woulda suspected it! When turned off all the covers appear normally. Thats awesome cuz now there is no need to replace* the old CSS style since all Chrome users will still be able to see it!

Thank you for trying to figure it out too, I wouldn't have noticed that otherwise without your post!

So FEAR, try to turn off Avast in Chrome and see if it works! If it comes back on you can probably disable its browser extension, the program should still protect your computer I would think. Maybe there is a way to white list this site too later as we had to with our programs.



*I think I will still create an alternative CSS for that cover style tho, so ppl can have their more button back on such lists
Dec 2, 2013 11:40 PM

Offline
Jan 2012
1578
Shishio-kun said:

I think I will still create an alternative CSS for that cover style tho, so ppl can have their more button back on such lists

I already have a layout with that feature ("more" button available, but actually I don't need this button, I just add it for someone else)
http://myanimelist.net/animelist/alisadark
Dec 3, 2013 12:23 AM

Online
Feb 2010
12634
Hahaido said:
Shishio-kun said:

I think I will still create an alternative CSS for that cover style tho, so ppl can have their more button back on such lists

I already have a layout with that feature ("more" button available, but actually I don't need this button, I just add it for someone else)
http://myanimelist.net/animelist/alisadark


Oh wow nice, I can't wait till they turn IMG back on so I can add such layouts to our premade layouts topic again! It hasn't been updated since summer... I could use animated preview pics for these few animated layouts too.

I mean an alternative method to this,
http://myanimelist.net/forum/?topicid=563993#PgHfTJVZPvBYHQkl.99

something using animetitle instead of #more
Dec 3, 2013 4:13 AM

Offline
Mar 2013
264
Thank you for your help, Shishio-kun and Hahaido. I don't use Avast but Adblock Plus is to blame for that. I've yet to figure out how to remove from the filters whatever it is that's being blocked but knowing the problem is great! Thank you
Dec 3, 2013 4:33 AM

Offline
Jan 2012
1578
F_E_A_R said:
I've yet to figure out how to remove from the filters

https://adblockplus.org/en/getting_started#disabling
Dec 3, 2013 8:28 AM

Offline
Aug 2013
387
I tried figuring out what to do myself like it says in the opening of the topic , but as I am a colmplete noob with css , (and not that well with technical english ) ...I am gonna try asasking for some help , I got a premade layout for my list ( [url]http://myanimelist.net/animelist/Abolic&status=2&order=0[/url] ) but somehow the thumbs (small pictures) dont show up for the anime in the list , since I already did some premade layouts , I am quiet sure I did that right so do I need to change something in de code or somewhere else ! thank you already !
Dec 3, 2013 8:31 AM

Offline
Mar 2013
264
Hahaido said:
https://adblockplus.org/en/getting_started#disabling


Oh, I didn't mean that. I meant figuring out which items in the filter lists need to be enabled. Not disabling the whole extension. Don't worry about that, I'll figure it out by attempt and error.
Dec 3, 2013 8:42 AM

Offline
Jan 2012
1578
Abolic said:
I am gonna try asasking for some help , I got a premade layout for my list ( [url]http://myanimelist.net/animelist/Abolic&status=2&order=0[/url] ) but somehow the thumbs (small pictures) dont show up for the anime in the list

You haven't @import covers, so they don't show up
Dec 3, 2013 8:43 AM

Offline
Aug 2013
387
where do I change or add this ?
Dec 3, 2013 8:49 AM

Offline
Aug 2013
387
:D did it , Thanks HAhaido
Dec 3, 2013 8:49 AM

Offline
Jan 2012
1578
Go to the topic where you got your layout and copy a line like this

@import "some_path/anime.css"

from the top of the code and paste to the top of your code
Dec 3, 2013 9:07 AM

Offline
Aug 2013
387
you where a great help some are still not working but I am satisfied , because there the new releases of autumn so they will be oke in a while I think , for this seems logical Thank you 10 times !
AbolicDec 3, 2013 9:11 AM
Dec 3, 2013 9:16 AM

Offline
Nov 2013
25
Guys, on my animelist ([url]http://myanimelist.net/animelist/FantomX[/url]), you can see width of headers doesn't match that of anime below. Can you help me about that.

Also, the "airing" text is displaying on 2nd line after anime's title. Is it possible to bring it back to first line so that it comes directly afte anime's title.

Thanks
Reply Disabled for Non-Club Members
Pages (159) « First ... « 27 28 [29] 30 31 » ... Last »

More topics from this board

» 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

Sticky: » 💚 [REPAIR STICKY] Repair/speed up layouts + Request layout fixes ( 1 2 )

Shishio-kun - Nov 17, 2023

52 by LucaBalsa »»
Jul 6, 2:02 PM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login