Forum Settings
Forums

[Scripts&Themes] Some Fixes to the Profile after the Update (16 Oct 2015)

New
Pages (12) « 1 2 [3] 4 5 » ... Last »
Oct 19, 2015 2:49 AM

Offline
Jul 2014
174
Zeando said:

also
the "Anime Favorites" headers seems too small (they should be the same size of Friends, Also Available at, RSS headers)
(the headers are currently even smaller than the titles...)
(or maybe it's some conflict on my part?)


Here you go: https://greasyfork.org/en/scripts/13183-myanimelist-mal-move-favorites
It's much better now!
Cpt_MathixOct 20, 2015 8:58 AM
Oct 19, 2015 2:52 AM

Offline
Feb 2011
2489
Steve said:
Steve said:
You want a stylesheet that makes it like this now?

And maybe a version that fixes the massive gap that comes with sunnysummerday's Crayon stylesheet.


yup, something like that would further compact the favorites making them use even less space and be more visible from the top

since, i'm guessing, the reason MAL did move the favorites at the center was cause 10x4 favorites on a single column did become too long, aftr they did increase the limit to 10 for anime and mangas too (which is a reasonable concern)

@Cpt_Mathix
nice, checking it up asap

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 2:53 AM

Offline
Nov 2012
162
Steve said:
You want a stylesheet that makes it like this now?
TsundereHeart said:
Anime
[Anime1][Anime2][Anime3][Anime4]
[Anime5][Anime6][Anime7][Anime8]
Manga
[Manga1][Manga2][Manga3][Manga4]
[Manga5][Manga6][Manga7][Manga8]
To make this I'll probably have to remove the titles/names of each of the anime/manga/people/characters and the other information (everything except the image). Or the titles could go below the images if you really wanted? What do people think.
Oct 19, 2015 2:55 AM

Offline
Feb 2011
2489
Steve said:
Steve said:
You want a stylesheet that makes it like this now?
To make this I'll probably have to remove the titles/names of each of the anime/manga/people/characters and the other information (everything except the image). Or the titles could go below the images if you really wanted? What do people think.

would it be possible to add the titles as popups (like it happens with the friends panel) ?
if not, yes, remove the titles and all the text, if it's not possible to have it fit somewhere

"Or the titles could go below the images if you really wanted?"
ah, you mean a text list under the compacted images?
dunno how that would look, it's worth a try (if it's not too much work)

Cpt_Mathix said:
Here you go: https://greasyfork.org/nl/scripts/13183-myanimelist-mal-move-favorites
It's much better now!

yup, much better indeed :D

about the favorites, the aim is making them take less space
having them like
Steve said:
You want a stylesheet that makes it like this now?
TsundereHeart said:
Anime
[Anime1][Anime2][Anime3][Anime4]
[Anime5][Anime6][Anime7][Anime8]
Manga
[Manga1][Manga2][Manga3][Manga4]
[Manga5][Manga6][Manga7][Manga8]

is an option,
but it could also be possible to just remove some of the spacing between the images, and resize the images to be smaller (like they used to be)
that would be sort of like recreating the old favorites list
cause currently the text is covering only half of the height of the thumbnails, which is a lot of wasted space
ZeandoOct 19, 2015 3:08 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 3:19 AM

Offline
Feb 2011
2489
Cpt_Mathix said:
Zeando said:
just found an other example
http://myanimelist.net/profile/Plinius


if you really want to fix it, make a script with this code:

var stats = document.getElementById('statistics');
var bars = statistics.getElementsByClassName('graph-inner plantowatch');
for(var i = 0; i < bars.length; i++) {
    if (bars[i].outerHTML.indexOf('190px') == -1) {
        bars[i].setAttribute("style", "width: 190px");
    }
}

created a script with it, but it didn't solve for me :o

did i create the script correctly? this is the code


ohhh found it!
the forum did mistake the [ i ] indexes of bars as a italics tag xD
and... it's worrying that the [ code] tag is still allowing BBcodes to be parsed inside.. that's just a fancy quote....

mmm, now that the copying error is fixed,
the Updates bars got fixed, but not the Stats bars
ZeandoOct 19, 2015 3:28 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 3:26 AM

Offline
Nov 2012
162
Zeando said:
would it be possible to add the titles as popups (like it happens with the friends panel) ?
if not, yes, remove the titles and all the text, if it's not possible to have it fit somewhere
You mean when you hover over them and wait a second, it display the name?
Might be a challenge, have to make it so that it somehow transfers the data in the 'title' for each of the anime/manga/char/people and move it into the for each image like this:
<img alt="TITLE"></img>
(there would be more code in there)
↓ (MAL haven't used <.img>, they just have a <.a> with a background-image:"_" in it.)

Ok MAL have designed the images weirdly...
and it is access forbiden to show the code even in a [.code][/.code] :(
SteveOct 19, 2015 3:34 AM
Oct 19, 2015 3:30 AM

Offline
Feb 2011
2489
Steve said:
Zeando said:
would it be possible to add the titles as popups (like it happens with the friends panel) ?
if not, yes, remove the titles and all the text, if it's not possible to have it fit somewhere
You mean when you hover over them and wait a second, it display the name?
Might be a challenge, have to make it so that it somehow transfers the data in the 'title' for each of the anime/manga/char/people and move it into the for each image like this:
<img alt="TITLE"></img>
(there would be more code in there)

yup that, but wouldn't it be easier to do that operation with a script than with stylish?

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 3:32 AM

Offline
Nov 2012
162
Zeando said:
Steve said:
You mean when you hover over them and wait a second, it display the name?
Might be a challenge, have to make it so that it somehow transfers the data in the 'title' for each of the anime/manga/char/people and move it into the for each image like this:
<img alt="TITLE"></img>
(there would be more code in there)

yup that, but wouldn't it be easier to do that operation with a script than with stylish?
Much easier with a userscript as far as I know (which is very little when it comes to them)
Oct 19, 2015 3:36 AM

Offline
Jul 2014
174
Zeando said:

ohhh found it!
the forum did mistake the [ i ] indexes of bars as a italics tag xD
and... it's worrying that the [ code] tag is still allowing BBcodes to be parsed inside.. that's just a fancy quote....


Yeah that should be fixed...

Zeando said:

mmm, now that the copying error is fixed,
the Updates bars got fixed, but not the Stats bars


It only fixes the update bars, can you give me an example of a broken stats bar?
Oct 19, 2015 3:40 AM

Offline
Sep 2010
242
i updated my theme to make the friends script fit nicely without any side effects for when a user doesn't have it installed.



weeeeeee :D
Oct 19, 2015 3:40 AM

Offline
Jul 2014
174
Steve said:
Zeando said:
would it be possible to add the titles as popups (like it happens with the friends panel) ?
if not, yes, remove the titles and all the text, if it's not possible to have it fit somewhere
You mean when you hover over them and wait a second, it display the name?
Might be a challenge, have to make it so that it somehow transfers the data in the 'title' for each of the anime/manga/char/people and move it into the for each image like this:
<img alt="TITLE"></img>
(there would be more code in there)
↓ (MAL haven't used <.img>, they just have a <.a> with a background-image:"_" in it.)

Ok MAL have designed the images weirdly...
and it is access forbiden to show the code even in a [.code][/.code] :(


Yep noticed that when i made the "move favorites" script. The images disappear when they are not inside the div with classname 'user-favorites-outer'

That's really annoying...
Oct 19, 2015 3:50 AM

Offline
Feb 2011
2489
Cpt_Mathix said:
Zeando said:
mmm, now that the copying error is fixed,
the Updates bars got fixed, but not the Stats bars

It only fixes the update bars, can you give me an example of a broken stats bar?

only one stat: (manga)
http://myanimelist.net/profile/Felipsu
both stats bars
http://myanimelist.net/profile/Oiacz

but really, this is a bug of MAL, let them solve it themselfes -.-
i've already reported it
ZeandoOct 19, 2015 3:55 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 3:53 AM

Offline
Jul 2014
174
TsundereHeart said:
Anime
[Anime1][Anime2][Anime3][Anime4]
[Anime5][Anime6][Anime7][Anime8]
Manga
[Manga1][Manga2][Manga3][Manga4]
[Manga5][Manga6][Manga7][Manga8]


how does this look?



I have to go now so I will have to make the script another time...
Oct 19, 2015 3:55 AM

Offline
Jul 2014
174
Zeando said:
Cpt_Mathix said:

It only fixes the update bars, can you give me an example of a broken stats bar?

only one stat: (manga)
http://myanimelist.net/profile/Felipsu
both stats bars
http://myanimelist.net/profile/Oiacz


Maybe I'm blind but I don't see the problem :P
Oct 19, 2015 4:02 AM

Offline
Feb 2011
2489
Cpt_Mathix said:
how does this look?

I have to go now so I will have to make the script another time...

That's the idea :D
it's k, as before, there is no rush

Cpt_Mathix said:
Zeando said:

only one stat: (manga)
http://myanimelist.net/profile/Felipsu
both stats bars
http://myanimelist.net/profile/Oiacz


Maybe I'm blind but I don't see the problem :P

http://i.imgur.com/3XyqSbq.png
http://i.imgur.com/BMmMAY2.png

but again, this is something MAL should fix on the "Official"

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 4:12 AM

Offline
Feb 2011
2489
found a problem with the "favorites on the side" script
on my own profile it works fine
but randomly on some profiles it shows in the center

example: http://myanimelist.net/profile/Syrup-
what i can notice on syrup profile is that there is no "gender" and "location", may that be the cause?
ah, syrup also doesn't have the "Also Available at", that's more likely to be the cause
ZeandoOct 19, 2015 4:16 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 4:15 AM

Offline
Nov 2012
162
Ok I really have to go but if you guys want you can try and fix the final parts to the script:
Or wait for me to fix it later today.

This is it's current state:
Oct 19, 2015 4:17 AM

Offline
Feb 2011
2489
Steve said:
Ok I really have to go but if you guys want you can try and fix the final parts to the script:
Or wait for me to fix it later today.

will give it a try, thanks :)

Steve said:
This is it's current state:

neat
so the current limit without resizing them is 3 on the same line.. (had hoped at least 4)
if they could be resized to be the same size of Friends thumbnails, there could fit 5 with no extra line with only 1 image in case one has 10 favorites

also, it's just my impression, or the favorites start a bit more on the right, if compared to the Friends thumbs?

with that style they become so compact there is even no more the need to move them on the side xD (but it doesn't work well with the script disabled for now)
ZeandoOct 19, 2015 4:27 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 4:38 AM

Offline
Oct 2007
3705
sunnysummerday said:
i updated my theme to make the friends script fit nicely without any side effects for when a user doesn't have it installed.



weeeeeee :D

sunny, I want to update your theme so the favourites look like this, but I want to keep my stats looking like this:



Which bit of my current script should I put into the custom script to keep it looking like this? ;O;
Oct 19, 2015 4:46 AM

Offline
Nov 2012
162
Zeando said:
Yeah I realised that the favourites start further into the right → but couldn't work out why.
I'll work on it a little more now.
Oct 19, 2015 4:55 AM

Offline
Jul 2014
174
Zeando said:
found a problem with the "favorites on the side" script
on my own profile it works fine
but randomly on some profiles it shows in the center

example: http://myanimelist.net/profile/Syrup-
what i can notice on syrup profile is that there is no "gender" and "location", may that be the cause?
ah, syrup also doesn't have the "Also Available at", that's more likely to be the cause


Fixed the script: https://greasyfork.org/en/scripts/13183-myanimelist-mal-move-favorites
Oct 19, 2015 5:02 AM

Offline
Nov 2012
162
Well it works...

But for some reason it wants the images much smaller than they need to be! :(

Or you can have overlap!
SteveOct 19, 2015 5:07 AM
Oct 19, 2015 5:03 AM

Offline
Feb 2011
2489
Steve said:
Yeah I realised that the favourites start further into the right → but couldn't work out why.
I'll work on it a little more now.

even with the compacting style disabled they are still moved on the right, so at least it isn't a side effect of having them placed on lines


great, working even on syrup now

just wonder, was it caused by the script not having a point(the "Available at") to use as reference for where to move?
could something similar happen also with the versions/edits "above the Friends" and "below the RSS Feeds" ? (assuming those panels vanish when empty, which i'm not sure, an empty profile could be handy for testing)

Steve said:
Well it works...

But for some reason it wants the images much smaller than they need to be! :(

wow, almost there
may be an optical effect making you think they are smaller, caused by the lack of spacing between them?
or are they really smaller? can't notice it
ZeandoOct 19, 2015 5:08 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 5:05 AM

Offline
Sep 2010
242
Kuromii said:
bleepblop

i say update anyway. within a week after i finish off other fixes (non profile related), i can write extra code for people who want stats on the left and updates on the right. i'll likely need to revert fully anyway because in mal's post they mention adding "collapse buttons" which won't work with mine.
Oct 19, 2015 5:08 AM

Offline
Jul 2014
174
Zeando said:



great, working even on syrup now

just wonder, was it caused by the script not having a point(the "Available at") to use as reference for where to move?
could something similar happen also with the versions/edits "above the Friends" and "below the RSS Feeds" ? (assuming those panels vanish when empty, which i'm not sure, an empty profile could be handy for testing)


Yeah Available at was absent on Syrup's profile which caused an empty pointer. The script checks if the pointer is empty. If yes, Favorites will be placed above the RSS feed
Cpt_MathixOct 25, 2015 2:52 PM
Oct 19, 2015 5:11 AM

Offline
Nov 2012
162
Steve said:

Why would it be unhappy with a box so large! :(

HaXXspetten said:
I don't think thats a good thing?
Oct 19, 2015 5:11 AM
*hug noises*

Offline
May 2013
31401
Steve said:
Well it works...

But for some reason it wants the images much smaller than they need to be! :(

Or you can have overlap!
Overlap makes it look like a bookshelf :3
Oct 19, 2015 5:18 AM

Offline
Feb 2011
2489
noticed a thing with the style created to test this

which may be still relevant for the new version with 5x2

when the style is enabled it goes to change some general spacing over the whole page, on more points
making the distance between info, affinity, friends smaller
and also for some reason moves the anime stats bar above making it unaligned with the manga stats
(guess it's a matter of a class/id not univocally identified)

HaXXspetten said:
Overlap makes it look like a bookshelf :3

was thinking the same xD

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 5:20 AM

Offline
Nov 2012
162
Zeando said:

remove this code if you don't want it to be as compact:
/* More Compact Left Panel */
.page-common .mb8 {
    margin: 0
}
.page-common .pb12{
    padding-bottom: 4px !important;
}
.user-profile h4 {
    margin: 0 !important;
}
Should fix most of that if you didn't like it.

no matter how large you make it, it's never happy :/
SteveOct 19, 2015 5:25 AM
Oct 19, 2015 5:25 AM

Offline
Feb 2011
2489
Steve said:
Zeando said:

remove this code if you don't want it to be as compact:
/* More Compact Left Panel */
.page-common .mb8 {
    margin: 0
}
.page-common .pb12{
    padding-bottom: 4px !important;
}
.user-profile h4 {
    margin: 0 !important;
}
Should fix most of that if you didn't like it.

tried to remove those, they're not the cause of the stats bar getting messed up
will remove lines one by one to see which is the one creating problems :P

i mean, this happens

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 5:27 AM

Offline
Nov 2012
162
Zeando said:

remove this code if you don't want it to be as compact:
/* More Compact Left Panel */
.page-common .mb8 {
    margin: 0
}
.page-common .pb12{
    padding-bottom: 4px !important;
}
.user-profile h4 {
    margin: 0 !important;
}
Should fix most of that if you didn't like it.[/quote]
tried to remove those, they're not the cause of the stats bar getting messed up
will remove lines one by one to see which is the one creating problems :P[/quote]
Try the lastest code:
(because I don't notice any non-alignment?
But yes, MAL doesn't just use their 'class' identifiers once, they use it many times throughout which makes it kind of awkward to identify specific parts sometimes, and causes edits to other parts of the page (unintentionally). But it is also a fairly good idea when creating a website.
Oct 19, 2015 5:32 AM

Offline
Nov 2012
162
Zeando said:
i mean, this happens
Oh well, yeah I wouldn't notice that because I am not using any scripts that rearrange the profile.
Oct 19, 2015 5:33 AM

Offline
Feb 2011
2489
Steve said:
Zeando said:
tried to remove those, they're not the cause of the stats bar getting messed up
will remove lines one by one to see which is the one creating problems :P

i mean, this happens

Try the lastest code:
(because I don't notice any non-alignment?
But yes, MAL doesn't just use their 'class' identifiers once, they use it many times throughout which makes it kind of awkward to identify specific parts sometimes, and causes edits to other parts of the page (unintentionally). But it is also a fairly good idea when creating a website.

still unaligned, like in the screen of before
guess it happens only in firefox, if you can't see it
ah, tried disabling the aligning script, there is still a noticeable difference in the distance between "Days" and the bars (wonder if both script and style try to correct it at the same time, applying the correction 2 times?)

cool having the 5x2, would suggest to add a little spacing between them
maybe they skip and overlap happens cause they're still using the original size(bigger) of the thumbs to see if it's needed to skip a line or not?
ZeandoOct 19, 2015 5:37 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 5:36 AM

Offline
Nov 2012
162
I'm pretty sure that is done by MAL, I noticed that when creating the profile rearrangement stylesheet and I realigned them.
If you look back to the first page:

Steve said:
Kuromii said:

But its annoying how the manga stats, as you may have noticed from the image don't align with the anime perfectly. Somewhere in the middle of it they added a margin: 8px !important; which isn't present in the anime stats. Very strange.
It doesn't seem as bad on my one:
try replacing your code?
For Firefox, stats ontop:
For Firefox, Updates ontop:
Or you could use sunnysummerday's stylesheet that comes with it.
SteveOct 19, 2015 5:42 AM
Oct 19, 2015 5:41 AM

Offline
Jul 2014
174
Zeando said:
Steve said:

Try the lastest code:
(because I don't notice any non-alignment?
But yes, MAL doesn't just use their 'class' identifiers once, they use it many times throughout which makes it kind of awkward to identify specific parts sometimes, and causes edits to other parts of the page (unintentionally). But it is also a fairly good idea when creating a website.

still unaligned, like in the screen of before
guess it happens only in firefox, if you can't see it
ah, tried disabling the aligning script, there is still a noticeable difference in the distance between "Days" and the bars (wonder if both script and style try to correct it at the same time, applying the correction 2 times?)


My script fixes the source of the unalignment, so yeah probably 2 corrections at the same time...
Oct 19, 2015 5:50 AM

Offline
Feb 2011
2489
@Steve
it's implicit that using both a style and a script at the same time to do the same thing is to be avoided
in my case i've only two scripts affecting the stat bars, one pushing them on top, and an other having them aligned (which work fine together)
and a style which should affect only the favorites, but which also goes to modify the stats

so i think the style making the favorites more compact should do only that and not other things also, or it should be renamed "compact favorites and stats", to avoid overlaps with other similar styles and scripts which affect the same parts of the page

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 6:02 AM

Offline
Nov 2012
162
Zeando said:
@Steve
it's implicit that using both a style and a script at the same time to do the same thing is to be avoided
in my case i've only two scripts affecting the stat bars, one pushing them on top, and an other having them aligned (which work fine together)
and a style which should affect only the favorites, but which also goes to modify the stats

so i think the style making the favorites more compact should do only that and not other things also, or it should be renamed "compact favorites and stats", to avoid overlaps with other similar styles and scripts which affect the same parts of the page
Ok so yeah it was the favourites,
it is this part of the code that messes it up:
.page-common .di-t{
    display: block;
    float: left;
}
But if you remove it, the favourites will not be in rows :/
Oct 19, 2015 6:03 AM

Offline
Feb 2011
2489
.page-common .di-t

mmm, isn't there a more specific way to identify that part?
like adding .container-left (but which would make it not working if it isn't moved on the side)
or .user-favorites-outer.js-truncate-outer ?

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 6:05 AM

Offline
Jul 2014
174
Zeando said:
.page-common .di-t

mmm, isn't there a more specific way to identify that part?
like adding .container-left (but which would make it not working if it isn't moved on the side)
or .user-favorites-outer.js-truncate-outer ?


what about di-tc?
Oct 19, 2015 6:07 AM

Offline
Feb 2011
2489
.page-common .user-favorites-outer.js-truncate-outer .di-t

unless i don't know how selecting works in styles xD i'm just learning bits while i test them
cool it works for me

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 6:07 AM

Offline
Nov 2012
162
Cpt_Mathix said:
Zeando said:
.page-common .di-t

mmm, isn't there a more specific way to identify that part?
like adding .container-left (but which would make it not working if it isn't moved on the side)
or .user-favorites-outer.js-truncate-outer ?


what about di-tc?
That messes up even more of the page.
Oct 19, 2015 6:08 AM

Offline
Nov 2012
162
Zeando said:
.page-common .user-favorites-outer.js-truncate-outer .di-t

unless i don't know how selecting works in styles xD i'm just learning bits while i test them
Nice! I'm terrible at this part, that's a big help :)

Code so far, it works, just lots of wasted space in the favourites section.

Result:
I'll be off again, got to go to my Product Design lesson ^^"
SteveOct 19, 2015 6:12 AM
Oct 19, 2015 6:18 AM

Offline
Feb 2011
2489
thanks, this is getting so great :D

other parts that needs to be more specific to don't mess other parts of the page
.page-common .user-favorites-outer.js-truncate-outer .mb8
.page-common .user-favorites-outer.js-truncate-outer .pb12
.user-profile .user-favorites-outer.js-truncate-outer h4


wonder what else could be improved
someone wished to have the [edit] button back on the "Last Updates", but dunno how much that would be possible
it could be possible to copy the edit button from the Panel, but it would be needed to have the id or link to the anime/manga as input for it to work

unless they have removed the support for .Lightbox_AddEdit.button_edit
the page editlist.php seems to still exist, so it could be linked to that
/editlist.php?type=anime&id=1&hideLayout
ZeandoOct 19, 2015 6:34 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 6:37 AM

Offline
Jul 2014
174
Zeando said:
thanks, this is getting so great :D

other parts that needs to be more specific to don't mess other parts of the page
.page-common .user-favorites-outer.js-truncate-outer .mb8
.page-common .user-favorites-outer.js-truncate-outer .pb12
.user-profile .user-favorites-outer.js-truncate-outer h4


wonder what else could be improved
someone wished to have the [edit] button back on the "Last Updates", but dunno how much that would be possible
it could be possible to copy the edit button from the Panel, but it would be needed to have the id or link to the anime/manga as input for it to work

unless they have removed the support for .Lightbox_AddEdit.button_edit
the page editlist.php seems to still exist, so it could be linked to that
/editlist.php?type=anime&id=1&hideLayout


That should be easy to implement, you can find the anime/manga id in the hyperlink

Cpt_MathixOct 19, 2015 6:40 AM
Oct 19, 2015 6:42 AM

Offline
Sep 2010
242
empty pages like http://myanimelist.net/profile/BakaProof are still broken with the favourites script, or are you working on that?

edit: this page full of stuff is broken too! http://myanimelist.net/profile/WickedHeroine

i swear it's because mal has no idea how to code >_<
sunnysummerdayOct 19, 2015 6:48 AM
Oct 19, 2015 6:49 AM
*hug noises*

Offline
May 2013
31401
sunnysummerday said:
empty pages like http://myanimelist.net/profile/BakaProof are still broken with the favourites script, or are you working on that?

edit: this page full of stuff is broken too! http://myanimelist.net/profile/WickedHeroine

i swear it's because mal has no idea how to code >_<
Broken how? Looks fine to me
Oct 19, 2015 6:56 AM

Offline
Feb 2011
2489
cool
removing: .profile .user-favorites-outer,
from:
h4[class="mb8 mr8"], h4[class="mb8"], div[class="mb8 mr8"], div[class="mb8"], [b].profile .user-favorites-outer[/b], div[class="di-tc"]{
    width: 230px !important;
}

makes the style work with both and without the script to move on the side
(hoping it doesn't mess something else somewhere else...)

see how it looks when on the right side of the page :D

now it only misses some spacing between the thumbs

HaXXspetten said:
sunnysummerday said:
empty pages like http://myanimelist.net/profile/BakaProof are still broken with the favourites script, or are you working on that?

edit: this page full of stuff is broken too! http://myanimelist.net/profile/WickedHeroine

i swear it's because mal has no idea how to code >_<
Broken how? Looks fine to me

it looks fine to me too, with the script to move on the side that is
and both me and hax don't have the crayon theme, right?


ah @Cpt_Mathix
check this empty profile
http://myanimelist.net/profile/BakaProof
it has no feeds, but the favorites still manage to get on the side, did you use the Friends as reference point to move them?
(did remember you used the Feeds as backup in case the Available isn't loaded, maybe i remember wrong..)

scrap that, i had the feeds disabled with adblock, the feeds seems to always appear even on empty profiles

also found an other little glitch of the Align script, (it's visible in that empty profile too)
the "Manga Stats" and "Last Manga Updates" are not aligned vertically
it's possible to fix that too?
it would appear it's the "Last Manga Updates " to be too much on the right
the right end of "Last Anime Updates " is also odd, it ends past the end of "Anime Stats"
guess the general width of "Updates" and "Stats" is different on the "Official", making them equal should simplify the fixing
ZeandoOct 19, 2015 7:23 AM

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 7:13 AM

Offline
Sep 2010
242
i made sure to disable stylish first!



it's just like the empty profile :/
Oct 19, 2015 7:16 AM

Offline
Feb 2011
2489
^^^ that is the problem which did happen when the "Available at" is empty, thus vanishing
the script uses the "Available at" like an anchor to drag the favorites there

it got already fixed, update/reinstal the script

Fixes to make the Profile more bearable after "the Modern★Profile★Update★★Rip★Profile★"
Oct 19, 2015 7:25 AM

Offline
Sep 2010
242
i have the most recent update D:



i just noticed this. that's with the script on (and my theme on, but that doesn't affect it.) it's "h4", but with the script off, it's "h5".
sunnysummerdayOct 19, 2015 7:34 AM
Pages (12) « 1 2 [3] 4 5 » ... Last »

More topics from this board

» English essay

Jeycopp - Feb 3, 2015

12 by JeanParcks »»
2 hours ago

» Share Your YouTube Channel/Videos! ( 1 2 3 4 5 ... Last Page )

nin-tendo - Dec 16, 2022

362 by nin-tendo »»
Yesterday, 11:56 AM

» Protect or punish?

DollzchanAi - Apr 18

4 by DollzchanAi »»
Yesterday, 6:15 AM

» BL reference in Tomodachi Life

Kinspie13 - Apr 24

4 by Kinspie13 »»
Apr 24, 9:41 PM

» How to Export/Backup Your Anime List Automatically! (TamperMonkey Script)

hacker09 - May 18, 2020

3 by Vapor_AU »»
Apr 24, 8:41 PM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login