Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 62 63 [64] 65 66 » ... Last »
Oct 4, 2015 10:46 AM

Offline
Nov 2013
97
Shishio-kun said:

The only ways I can think of are complicated as hell. You could move whole rows with CSS, I guess, but its not simple at all

SamPolus22 said:

If you have a couple of years of free time, then I guess you can do it XD


:c
Oct 4, 2015 11:28 AM

Offline
Dec 2012
169
Posted this 2 days ago but still no answer...
Shishio-Senpai pls help me *.*

Can you please tell me how to fix the sub-headers (score, episodes, etc)?
They are not aligned with the list
Oct 4, 2015 12:05 PM

Offline
Feb 2010
12631
tirafesi said:
Posted this 2 days ago but still no answer...
Shishio-Senpai pls help me *.*

Can you please tell me how to fix the sub-headers (score, episodes, etc)?
They are not aligned with the list


Remove

.td1:nth-of-type(2), .td2:nth-of-type(2){
width: 300px;
}

That's misaligning your list
Oct 4, 2015 12:10 PM

Offline
Feb 2010
12631
Klassical said:
Hello
i have a problem in my list layout , at the top left there seem to be "Profile" and on it there is also "Logout" , so when i click on profile it logs out of the site. it is distorted so you can see it , i have checked some things to fix it but i couldn't find a solution

maybe someone here can help me with this ?


So what did you want to do- move a link, remove it..?

I would suggest to remove the logout link with this

form a{
display: none;
}
Oct 4, 2015 12:20 PM

Offline
Aug 2014
1867
Shishio-kun said:
Klassical said:
Hello
i have a problem in my list layout , at the top left there seem to be "Profile" and on it there is also "Logout" , so when i click on profile it logs out of the site. it is distorted so you can see it , i have checked some things to fix it but i couldn't find a solution

maybe someone here can help me with this ?


So what did you want to do- move a link, remove it..?

I would suggest to remove the logout link with this

form a{
display: none;
}


Worked
Thank you
Oct 4, 2015 1:07 PM

Offline
Dec 2012
169
Shishio-kun said:
tirafesi said:
Posted this 2 days ago but still no answer...
Shishio-Senpai pls help me *.*

Can you please tell me how to fix the sub-headers (score, episodes, etc)?
They are not aligned with the list


Remove

.td1:nth-of-type(2), .td2:nth-of-type(2){
width: 300px;
}

That's misaligning your list

Thank you, it worked! :D

When i'm writting the position of an element, is there a way i can make it look like:
"top: 35% + 50px"
The reason i wanna do this is because i want to put the Shigatsu Logo in the middle of the list (but my list position is based on screen %, so i though i could make the logo start at the same point, and then add px to it)
Because if i just put the image as a part of the list, it will end up like it is now, with the image intercepting the Watching header
Oct 4, 2015 4:02 PM

Offline
Sep 2015
607
Shishio-kun said:
Aoi_Yui said:
I was talking about the format factory program. Sorry for the wording fail. This link you gave us for one of the programs used in the tut: http://www.formatoz.com/ that is a japanese site. I can translate the site in chrome but all of the pictures of the programs are in japanese, there are multiple versions of format factory, and I do not wan't t click on anything I can't read.


Again:

Shishio-kun said:
What tutorial are you talking about


The how to make a gif one you made under the graphic design section Make a high-quality GIF from any video! for the format factory and the How to make an Animated GIF from any Video without reencoding for the "script error: there is no function named "ffvideosource"" complaint.
Oct 4, 2015 5:55 PM

Offline
Feb 2010
12631
Aoi_Yui said:
Shishio-kun said:


Again:



The how to make a gif one you made under the graphic design section Make a high-quality GIF from any video! for the format factory and the How to make an Animated GIF from any Video without reencoding for the "script error: there is no function named "ffvideosource"" complaint.


OK the one I made I have updated with some new links for format factory, and I also fixed the image links which were broken. I'm not sure why that site was made Japanese, weird.

As for Alexs' tutorial I don't know anything about that one
Oct 5, 2015 4:45 PM
Offline
Sep 2014
4
Shishio-kun said:
Sutocamp said:
Apologies if this question has already been asked before. How do I make the Add/Edit button be vertically centered in the row instead of being inline with the first line of text?

I tried setting the vertical-align of the floating div to middle, but that didn't take. Playing around with the margins also didn't seem to do anything.


I'm not sure where you want to move it so add this:

a.List_LightBox{
position: relative;
top: 1px;
left: 1px;
}

Then move the link into place by adjusting amounts after the top and left codes


Thanks, but what I want to do is to make it vertically-centered both for rows that are a single line high and for rows that are two lines high. Setting an absolute offset wouldn't work for that, would it?

Edit: After some more experimentation, I managed to approximate the vertical centering with the following:

td[class^="td"]:nth-of-type(2) {
position: relative;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] {
bottom: 50%;
display: block;
position: absolute;
right: 0;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] .List_LightBox {
display: inline-block;
position: relative;
top: 8px;
}

The problem is that it's colliding with the anime title. Is there a way to prevent that? And surely there's a simpler way to do the same thing?
ZMXiiOct 5, 2015 6:15 PM
Oct 5, 2015 10:45 PM

Offline
Feb 2010
12631
Sutocamp said:
Shishio-kun said:


I'm not sure where you want to move it so add this:

a.List_LightBox{
position: relative;
top: 1px;
left: 1px;
}

Then move the link into place by adjusting amounts after the top and left codes


Thanks, but what I want to do is to make it vertically-centered both for rows that are a single line high and for rows that are two lines high. Setting an absolute offset wouldn't work for that, would it?

Edit: After some more experimentation, I managed to approximate the vertical centering with the following:

td[class^="td"]:nth-of-type(2) {
position: relative;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] {
bottom: 50%;
display: block;
position: absolute;
right: 0;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] .List_LightBox {
display: inline-block;
position: relative;
top: 8px;
}

The problem is that it's colliding with the anime title. Is there a way to prevent that? And surely there's a simpler way to do the same thing?


It doesn't look to be colliding with the anime title to me atm? Which title?
Oct 6, 2015 5:07 PM
Offline
Sep 2014
4
Shishio-kun said:
Sutocamp said:
Thanks, but what I want to do is to make it vertically-centered both for rows that are a single line high and for rows that are two lines high. Setting an absolute offset wouldn't work for that, would it?

Edit: After some more experimentation, I managed to approximate the vertical centering with the following:

td[class^="td"]:nth-of-type(2) {
position: relative;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] {
bottom: 50%;
display: block;
position: absolute;
right: 0;
}
td[class^="td"]:nth-of-type(2) div[style*="float"] .List_LightBox {
display: inline-block;
position: relative;
top: 8px;
}

The problem is that it's colliding with the anime title. Is there a way to prevent that? And surely there's a simpler way to do the same thing?


It doesn't look to be colliding with the anime title to me atm? Which title?


It is with some of the longer titles (such as Mondaiji).

After a bit more fiddling, it does look like the title will wrap if I set {display: inline-block; max-width: 285px;}. Probably not best practice, but I'll take it.
Oct 7, 2015 2:08 PM

Offline
Nov 2014
23
I would first like to thank you for doing "malstyle"
I dont know nothing about this and would like to ask whether it is possible to remove the black squares where powinien be the image of the anime?

Sorry for mistakes j use translator :P
Oct 7, 2015 2:53 PM

Offline
Feb 2010
12631
Cielak44 said:
I would first like to thank you for doing "malstyle"
I dont know nothing about this and would like to ask whether it is possible to remove the black squares where powinien be the image of the anime?

Sorry for mistakes j use translator :P


I think if you just turn off tags on your list it won't show
Oct 8, 2015 12:41 AM

Offline
Dec 2012
169
Is it possible to add 2 Tags colums? I want to add 2 different colums where i can write stuff
Oct 8, 2015 3:33 PM

Offline
Jan 2015
4
I asked this question on the forum, and was redirected here. I ended up using Shishio-kuns guide to help customize the background among other features into my list. I'm not that good with code but it made it easy enough to add what I wanted to the list. There is one issue i'm having with text though, so i'll link my list to explain.

http://myanimelist.net/animelist/Coolidger

The problem i'm having is when you scroll over a series, my miniviews pop up. I haven't written any yet, other then for Acchi Kochi (first on my completed list). If you scroll over that, you'll see that my text for the tags is black (which I changed it to), but for whatever reasons the commas come up white still, and I can't figure out how to fix that. Any ideas? I can link my full CSS if necessary.
Oct 8, 2015 4:25 PM

Offline
Apr 2015
287
Coolidger said:
I asked this question on the forum, and was redirected here. I ended up using Shishio-kuns guide to help customize the background among other features into my list. I'm not that good with code but it made it easy enough to add what I wanted to the list. There is one issue i'm having with text though, so i'll link my list to explain.

http://myanimelist.net/animelist/Coolidger

The problem i'm having is when you scroll over a series, my miniviews pop up. I haven't written any yet, other then for Acchi Kochi (first on my completed list). If you scroll over that, you'll see that my text for the tags is black (which I changed it to), but for whatever reasons the commas come up white still, and I can't figure out how to fix that. Any ideas? I can link my full CSS if necessary.

Replace your TAG TEXT COLOR code with this one:
tr:hover td[class^='td']:nth-of-type(6) a, tr:hover td[class^='td']:nth-of-type(6) span{
color: black !important;
}
you can also add the second part of the code instead of replacing the whole code :)
Oct 8, 2015 8:16 PM

Offline
Jan 2015
4
SamPolus22 said:
Coolidger said:
I asked this question on the forum, and was redirected here. I ended up using Shishio-kuns guide to help customize the background among other features into my list. I'm not that good with code but it made it easy enough to add what I wanted to the list. There is one issue i'm having with text though, so i'll link my list to explain.

http://myanimelist.net/animelist/Coolidger

The problem i'm having is when you scroll over a series, my miniviews pop up. I haven't written any yet, other then for Acchi Kochi (first on my completed list). If you scroll over that, you'll see that my text for the tags is black (which I changed it to), but for whatever reasons the commas come up white still, and I can't figure out how to fix that. Any ideas? I can link my full CSS if necessary.

Replace your TAG TEXT COLOR code with this one:
tr:hover td[class^='td']:nth-of-type(6) a, tr:hover td[class^='td']:nth-of-type(6) span{
color: black !important;
}
you can also add the second part of the code instead of replacing the whole code :)


Oh awesome, thank you.
Oct 8, 2015 10:06 PM

Offline
Aug 2014
63
Hi, I have a question regarding the interactions within the #list_surround element. If you're using a standard category list - like the ones where they appear at the above of the page and right below is the MAL tables & list area, is there any way to make the category list fixed in position or unable to move - but the MAL list still does?

And also, I know that everything about the MAL list - from headers to td1 & td2 - they're all included in the #list_surround, but is there essentially any way for it itself to have its own "overflow-y: auto;" ?

My manga list is using the current form, where category list is a premade mod. Thanks!
Oct 9, 2015 12:18 PM

Offline
Apr 2015
287
Asectic said:
Hi, I have a question regarding the interactions within the #list_surround element. If you're using a standard category list - like the ones where they appear at the above of the page and right below is the MAL tables & list area, is there any way to make the category list fixed in position or unable to move - but the MAL list still does?

And also, I know that everything about the MAL list - from headers to td1 & td2 - they're all included in the #list_surround, but is there essentially any way for it itself to have its own "overflow-y: auto;" ?

My manga list is using the current form, where category list is a premade mod. Thanks!

You can make you category list fixed by adding "position: fixed !important;" to ".status_not_selected a, .status_selected a"
You have to re-position the buttons because it changes their position.
I don't really get your second question. Do you want to make an element inside the #list_surround scroll-able just like your table?
Oct 10, 2015 10:09 AM

Offline
Aug 2014
63
SamPolus22 said:
You can make you category list fixed by adding "position: fixed !important;" to ".status_not_selected a, .status_selected a"
You have to re-position the buttons because it changes their position.
I don't really get your second question. Do you want to make an element inside the #list_surround scroll-able just like your table?


The downside to reading pre-made codes is that one needs time to understand something that isn't theirs, especially with the pixel positioning *-* But I guess that's the only way to go about it. thanks~

Basically yes. I only want the table scrolling to apply to everything below the category list bar - with the banner fixed as well. For right now the way I have scroll setup it makes the awkward thing of just scrolling past the banner & category list.

.table {
overflow-y: auto;
}

I tried adding in following to the table element, since that's what seemed to control most of everything under category list. But no luck on that either. :P
Oct 10, 2015 12:36 PM

Offline
Jun 2013
19
Hi everyone.

I'm making a custom css style on my own but i'm stuck on something.

i'm using a "Default MAL style layouts" to start with but I want the final product to look more like a "Square-styled layouts"

Ths problem is: I don't know how to change entries from line to block. Everything I've tried fail.

Any advice ?
Oct 10, 2015 6:52 PM

Offline
Apr 2015
287
hatomike said:
Hi everyone.

I'm making a custom css style on my own but i'm stuck on something.

i'm using a "Default MAL style layouts" to start with but I want the final product to look more like a "Square-styled layouts"

Ths problem is: I don't know how to change entries from line to block. Everything I've tried fail.

Any advice ?

I would recommend you to look into other pre-made square layout codes like these two
http://myanimelist.net/forum/?topicid=459189
http://myanimelist.net/forum/?topicid=393503&show=40#msg18655159
Try understanding them then apply it to your list. You can also copy these layouts and just change the colors and images since they're "donated" and can be used by anyone on MAL. If you use the copy method and the layout has some form of signature of the creator on it, don't remove because that's rude XD
Oct 11, 2015 9:33 AM

Offline
Jun 2013
19
SamPolus22 said:

I would recommend you to look into other pre-made square layout codes like these two
http://myanimelist.net/forum/?topicid=459189
http://myanimelist.net/forum/?topicid=393503&show=40#msg18655159
Try understanding them then apply it to your list. You can also copy these layouts and just change the colors and images since they're "donated" and can be used by anyone on MAL. If you use the copy method and the layout has some form of signature of the creator on it, don't remove because that's rude XD


Of course, credit is important ;)

I think I'll try to understand how the code from the first link work. Then I add what need to be added in my code.

From memory, can you tell me where to look ? This can save me some time.I don't froce you tho.
Thanks !


EDIT:

Nevermind, I've just found it. Thanks a lot.
I leave the code here for anyone that need it:


#list_surround > table:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw), .hide {
    float: left;
    height: 200px;
    margin: 10px;
    width: 200px;
}

HatomikeOct 11, 2015 10:02 AM
Oct 11, 2015 10:18 AM

Offline
Feb 2010
12631
hatomike said:
Hi everyone
Ths problem is: I don't know how to change entries from line to block. Everything I've tried fail.

Any advice ?


I had this problem like 3 years ago, trying to create my own block-styled layout from scratch (which became the Poster Style layout). I had to get the codes to "square" titles from a private list that was never donated and the maker sort of retired from MAL soon after. Maybe that layout was where U531355 got some his cover idea and inspiration from too (not sure).

Anyways these are the steps to getting those codes I wanted:
1. rip the entire layout where the "block" style comes from. if its imported, you will have to import it

2. remove any codes like "display: none", "visibility:hidden", "opacity: 0". ctrl+f makes them easy to find.

3. color-code every code so its easy to see whats going on the list, similar to how I did this. Carefully remove background images, then save. You can also remove stuff related to the top bar as well, if you know what those codes look like, but you'll do this later anyways.

4. with that saved on your list, go to your list (firefox) and inspect element. go to Style Editor for the source edit and start removing whole blocks of code one by one (selectors and the stuff in the brackets after them). if something seems to take away the block style in any way, add it back and move on to the next set of codes. When you go thru the entire layout, you should have only the base stuff for the block-style, and they should be color coded for easy identification.

This is how you break down a seemingly complicated list to get the cool tricks easily, and it is one of the ways to break out of novice skill. There's a tutorial on using inspect element btw
http://myanimelist.net/forum/?topicid=1329419

hatomike said:
From memory, can you tell me where to look ? This can save me some time.I don't froce you tho.


The blocking on the original square layout comes from this CSS. it needs to be imported, won't work in MAL CSS edit box:
https://dl.dropboxusercontent.com/u/49469857/MAL/premade/square/style.css
But you should probably break it down from one of these lists
http://myanimelist.net/forum/?topicid=1198609
since they don't need to be imported. also iirc its several codes that made the blocking of titles, not just one. I think you need to have a wide list surround for example. and firefox inspect element atm is conflicting with Ad Block. You'd have to temporary disable that to use it if you use my method above
Oct 11, 2015 12:25 PM

Offline
Jun 2013
19
Shishio-kun said:


I had this problem like 3 years ago, trying to create my own block-styled layout from scratch (which became the Poster Style layout). I had to get the codes to "square" titles from a private list that was never donated and the maker sort of retired from MAL soon after. Maybe that layout was where U531355 got some his cover idea and inspiration from too (not sure).

Anyways these are the steps to getting those codes I wanted:
1. rip the entire layout where the "block" style comes from. if its imported, you will have to import it

2. remove any codes like "display: none", "visibility:hidden", "opacity: 0". ctrl+f makes them easy to find.

3. color-code every code so its easy to see whats going on the list, similar to how I did this. Carefully remove background images, then save. You can also remove stuff related to the top bar as well, if you know what those codes look like, but you'll do this later anyways.

4. with that saved on your list, go to your list (firefox) and inspect element. go to Style Editor for the source edit and start removing whole blocks of code one by one (selectors and the stuff in the brackets after them). if something seems to take away the block style in any way, add it back and move on to the next set of codes. When you go thru the entire layout, you should have only the base stuff for the block-style, and they should be color coded for easy identification.

This is how you break down a seemingly complicated list to get the cool tricks easily, and it is one of the ways to break out of novice skill. There's a tutorial on using inspect element btw
http://myanimelist.net/forum/?topicid=1329419


Thanks for all those advices. It's gonna help me a lot.


Shishio-kun said:


The blocking on the original square layout comes from this CSS. it needs to be imported, won't work in MAL CSS edit box:
https://dl.dropboxusercontent.com/u/49469857/MAL/premade/square/style.css
But you should probably break it down from one of these lists
http://myanimelist.net/forum/?topicid=1198609
since they don't need to be imported. also iirc its several codes that made the blocking of titles, not just one. I think you need to have a wide list surround for example. and firefox inspect element atm is conflicting with Ad Block. You'd have to temporary disable that to use it if you use my method above


Actually I've used Firebug to see how it work on the first link. Thanks.
Also, can I know why you need to import some css to work ? Mal are blocking some things ?
Oct 11, 2015 2:54 PM

Offline
Feb 2010
12631
hatomike said:

Also, can I know why you need to import some css to work ? Mal are blocking some things ?


Yes, while importing is merely for convenience a lot of times, its necessary because certain codes and characters will not save in the CSS editor, and need to be imported or hacked in a way (not always possible) so they pass by. If they are not, they disappear or scramble thus they invalidate the selectors they're a part of, rendering them useless.
Oct 11, 2015 6:42 PM

Offline
Jun 2013
19
Shishio-kun said:

Yes, while importing is merely for convenience a lot of times, its necessary because certain codes and characters will not save in the CSS editor, and need to be imported or hacked in a way (not always possible) so they pass by. If they are not, they disappear or scramble thus they invalidate the selectors they're a part of, rendering them useless.


Thanks. What kind of characters are deleted ?
Special characters ? non unicode one ? Or something like this ?
Oct 11, 2015 8:32 PM

Offline
Jul 2013
381
Asectic said:
SamPolus22 said:
You can make you category list fixed by adding "position: fixed !important;" to ".status_not_selected a, .status_selected a"
You have to re-position the buttons because it changes their position.
I don't really get your second question. Do you want to make an element inside the #list_surround scroll-able just like your table?


The downside to reading pre-made codes is that one needs time to understand something that isn't theirs, especially with the pixel positioning *-* But I guess that's the only way to go about it. thanks~

Basically yes. I only want the table scrolling to apply to everything below the category list bar - with the banner fixed as well. For right now the way I have scroll setup it makes the awkward thing of just scrolling past the banner & category list.

.table {
overflow-y: auto;
}

I tried adding in following to the table element, since that's what seemed to control most of everything under category list. But no luck on that either. :P


to make the list scrollable you should put the overflow-y under #list_surround. everything else that is inside #list_surround - such as category buttons should have position set so it doesn't scroll with the rest.
Oct 13, 2015 2:30 AM

Offline
Aug 2014
7
How can I fix the positioning of the "score," "type," "progress," and "tags"

Its a layout I found on here and added my own wallpaper and a few other codes at the bottom.

Thanks for any help, and sorry If I did this wrong, It's my first time posting

Heres the code
Oct 13, 2015 1:51 PM

Offline
Apr 2015
287
CynicalWarner said:
How can I fix the positioning of the "score," "type," "progress," and "tags"

Its a layout I found on here and added my own wallpaper and a few other codes at the bottom.

Thanks for any help, and sorry If I did this wrong, It's my first time posting

Heres the code

Add this to the bottom of your CSS:
.table_header:nth-of-type(3), .table_header:nth-of-type(4), .table_header:nth-of-type(5), .table_header:nth-of-type(6) {
position: relative !important;
right: 75px;
}
Oct 13, 2015 2:09 PM

Offline
Aug 2014
7
SamPolus22 said:
CynicalWarner said:
How can I fix the positioning of the "score," "type," "progress," and "tags"

Its a layout I found on here and added my own wallpaper and a few other codes at the bottom.

Thanks for any help, and sorry If I did this wrong, It's my first time posting

Heres the code

Add this to the bottom of your CSS:
.table_header:nth-of-type(3), .table_header:nth-of-type(4), .table_header:nth-of-type(5), .table_header:nth-of-type(6) {
position: relative !important;
right: 75px;
}


Awesome, thank you so much.
Oct 13, 2015 7:58 PM

Offline
Apr 2015
287
CynicalWarner said:
SamPolus22 said:

Add this to the bottom of your CSS:
.table_header:nth-of-type(3), .table_header:nth-of-type(4), .table_header:nth-of-type(5), .table_header:nth-of-type(6) {
position: relative !important;
right: 75px;
}


Awesome, thank you so much.

You're welcome :). I just saw you manga list and it's not working like the anime list did so add this code to fix it instead of the one I gave you for your anime list:
.table_header:nth-of-type(3), .table_header:nth-of-type(4), .table_header:nth-of-type(5), .table_header:nth-of-type(6) {
position: relative !important;
right: 120px;
}
Oct 14, 2015 7:29 AM

Offline
Sep 2013
20
Hello, I have a question.

Is there a way to change the order of the headers on your list page?

The standard order is Currently Watching, Completed, On-Hold, Dropped and Plan to Watch. I would like this order to be different.

I saw many CSS tutorials but none covered this, so I wonder if this can be changed somehow.
Oct 14, 2015 8:08 AM

Offline
Oct 2009
7724
Maritos said:
The standard order is Currently Watching, Completed, On-Hold, Dropped and Plan to Watch. I would like this order to be different.

How exactly do you want to change the order?
Oct 14, 2015 11:59 AM

Offline
Apr 2015
287
Maritos said:
Hello, I have a question.

Is there a way to change the order of the headers on your list page?

The standard order is Currently Watching, Completed, On-Hold, Dropped and Plan to Watch. I would like this order to be different.

I saw many CSS tutorials but none covered this, so I wonder if this can be changed somehow.

Correct me if I'm wrong, you want to rearrange the order of the list, like putting on-hold first when you press all anime?
If that's what you want then I don't think there's a way to do that because each category doesn't have its own code. They all are put under one code which controls them (#list_surround).
Oct 14, 2015 12:26 PM

Offline
Oct 2009
7724
SamPolus22 said:
Correct me if I'm wrong, you want to rearrange the order of the list, like putting on-hold first when you press all anime?

I think he means the links below the top bar but above the rest of the list, which you click to go to a specific category
Oct 14, 2015 4:02 PM

Offline
Sep 2013
20
Serhiyko said:
How exactly do you want to change the order?


SamPolus22 said:

Correct me if I'm wrong, you want to rearrange the order of the list, like putting on-hold first when you press all anime?
If that's what you want then I don't think there's a way to do that because each category doesn't have its own code. They all are put under one code which controls them (#list_surround).


Yes, something like that.

Instead of the default order (Currently Reading, Completed, On-Hold, Dropped and Plan to Read), I wanted it on a different order (namely Currently Reading, On-Hold, Plan to Read, Dropped and Completed).

So is it not possible? Thanks in advance.
Oct 14, 2015 4:32 PM

Offline
Apr 2015
287
Maritos said:
Serhiyko said:
How exactly do you want to change the order?


SamPolus22 said:

Correct me if I'm wrong, you want to rearrange the order of the list, like putting on-hold first when you press all anime?
If that's what you want then I don't think there's a way to do that because each category doesn't have its own code. They all are put under one code which controls them (#list_surround).


Yes, something like that.

Instead of the default order (Currently Reading, Completed, On-Hold, Dropped and Plan to Read), I wanted it on a different order (namely Currently Reading, On-Hold, Plan to Read, Dropped and Completed).

So is it not possible? Thanks in advance.

Do you know how to use CSS advanced list design?
Oct 14, 2015 4:38 PM

Offline
Sep 2013
20
SamPolus22 said:

Do you know how to use CSS advanced list design?


No idea. In fact, I was expecting that someone had already done this previously to their own list.
MaritosOct 14, 2015 5:05 PM
Oct 15, 2015 7:11 AM

Offline
Aug 2014
63
nymphiae said:
to make the list scrollable you should put the overflow-y under #list_surround. everything else that is inside #list_surround - such as category buttons should have position set so it doesn't scroll with the rest.


Yeah I know, but it's just that with my current code layout I have the banner as part of the list surround. I just basically want the scroll bar to "start" from underneath the category list and not including the banner & categories. I guess I'll take a closer look at the site's html once more at a later time.
Oct 15, 2015 12:47 PM

Offline
Apr 2015
287
Maritos said:
SamPolus22 said:

Do you know how to use CSS advanced list design?


No idea. In fact, I was expecting that someone had already done this previously to their own list.

Yes it's possible. Just give me the order and I will do it for you
Oct 16, 2015 3:38 AM

Offline
May 2014
1208
I don't remember which post this code is originally from so I will ask here. Could someone help me to do a few adjustments to this?



I want to do the fallowing:
1- Move entire thing to right.
2- Reduce number of anime in row from 5 to 4. Aka reduce width of entire thing.

I want to add different render + background for each page, but they won't be visible enough unless I do this.
I tried messing with numbers but saw no visible result
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines.
Oct 16, 2015 9:02 AM

Offline
Sep 2013
20
SamPolus22 said:

Yes it's possible. Just give me the order and I will do it for you


Wow, thanks a lot bro!

I would like the new order to be Currently Reading, On-Hold, Plan to Read, Dropped and Completed. Only for the manga list, since I don't use the anime list at all.

Thanks again!
Oct 16, 2015 10:24 AM

Offline
Apr 2015
287
Sparteh said:
I don't remember which post this code is originally from so I will ask here. Could someone help me to do a few adjustments to this?



I want to do the fallowing:
1- Move entire thing to right.
2- Reduce number of anime in row from 5 to 4. Aka reduce width of entire thing.

I want to add different render + background for each page, but they won't be visible enough unless I do this.
I tried messing with numbers but saw no visible result

First, to move the list to the right
Sparteh said:
I don't remember which post this code is originally from so I will ask here. Could someone help me to do a few adjustments to this?



I want to do the fallowing:
1- Move entire thing to right.
2- Reduce number of anime in row from 5 to 4. Aka reduce width of entire thing.

I want to add different render + background for each page, but they won't be visible enough unless I do this.
I tried messing with numbers but saw no visible result

I don't know a lot about renders so I didn't touch that part. I did my best to make your list on the right (you need to move everything that's why it's kind of hard). Now just replace your whole code with this one:
Oct 16, 2015 11:01 AM

Offline
Apr 2015
287
Maritos said:
SamPolus22 said:

Yes it's possible. Just give me the order and I will do it for you


Wow, thanks a lot bro!

I would like the new order to be Currently Reading, On-Hold, Plan to Read, Dropped and Completed. Only for the manga list, since I don't use the anime list at all.

Thanks again!

Okay, since you know absolutely nothing about CSS, you'll have to follow this tutorial but paste the code bellow instead of the one given on the tutorial. Tell me if the positioning of the buttons are messed up.
Oct 16, 2015 11:11 AM

Offline
Sep 2013
20
SamPolus22 said:

Okay, since you know absolutely nothing about CSS, you'll have to follow this tutorial but paste the code bellow instead of the one given on the tutorial. Tell me if the positioning of the buttons are messed up.


Hm, but this only changed the sequence of the buttons at the top bar, not the sequence at the list itself, look:
http://myanimelist.net/mangalist/Maritos

So is it not possible?
MaritosOct 16, 2015 11:16 AM
Oct 16, 2015 11:21 AM

Offline
Apr 2015
287
Maritos said:
SamPolus22 said:

Okay, since you know absolutely nothing about CSS, you'll have to follow this tutorial but paste the code bellow instead of the one given on the tutorial. Tell me if the positioning of the buttons are messed up.


Hm, but this only changed the sequence of the buttons at the top bar, not the sequence at the list itself, look:
http://myanimelist.net/mangalist/Maritos

So is it not possible?

I'm afraid that's not possible
Oct 16, 2015 11:40 AM

Offline
Sep 2013
20
SamPolus22 said:
Maritos said:


Hm, but this only changed the sequence of the buttons at the top bar, not the sequence at the list itself, look:
http://myanimelist.net/mangalist/Maritos

So is it not possible?

I'm afraid that's not possible


I see, thanks for all the help!
Oct 16, 2015 11:41 AM

Offline
May 2014
1208
SamPolus22 said:
Sparteh said:
I don't remember which post this code is originally from so I will ask here. Could someone help me to do a few adjustments to this?



I want to do the fallowing:
1- Move entire thing to right.
2- Reduce number of anime in row from 5 to 4. Aka reduce width of entire thing.

I want to add different render + background for each page, but they won't be visible enough unless I do this.
I tried messing with numbers but saw no visible result

First, to move the list to the right
Sparteh said:
I don't remember which post this code is originally from so I will ask here. Could someone help me to do a few adjustments to this?



I want to do the fallowing:
1- Move entire thing to right.
2- Reduce number of anime in row from 5 to 4. Aka reduce width of entire thing.

I want to add different render + background for each page, but they won't be visible enough unless I do this.
I tried messing with numbers but saw no visible result

I don't know a lot about renders so I didn't touch that part. I did my best to make your list on the right (you need to move everything that's why it's kind of hard). Now just replace your whole code with this one:


Thanks. I think I will be able to fix images and backgrounds now.
About moving top bad mod and type buttons. Which parts I should edit in order to move it?
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines.
Oct 16, 2015 1:20 PM

Offline
Apr 2015
287
Sparteh said:
SamPolus22 said:

First, to move the list to the right

I don't know a lot about renders so I didn't touch that part. I did my best to make your list on the right (you need to move everything that's why it's kind of hard). Now just replace your whole code with this one:


Thanks. I think I will be able to fix images and backgrounds now.
About moving top bad mod and type buttons. Which parts I should edit in order to move it?

Use this to move
Maritos said:
SamPolus22 said:

I'm afraid that's not possible


I see, thanks for all the help!

I'm going to try to find a solution. If I find one I will tell you
Anzumatsuri_Oct 16, 2015 1:26 PM
Reply Disabled for Non-Club Members
Pages (159) « First ... « 62 63 [64] 65 66 » ... 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