Be gone!
First of all, you probably know you can entirely remove the columns headed with Score, Rating, Tags, etc by going to this page and unchecking the box next to whatever column you want to remove. Make sure you save your changes at the bottom. http://myanimelist.net/editprofile.php?go=listpreferences
To remove something in particular from your list, just find the section of your list's CSS that controls the part you want to remove. Add display: none; to it and it will be gone regardless of what else is there in the CSS. If it still didn't go, you can try display: none !important; to override all other codes. Remember anything else attached to that area will be gone too, like text on it. Any links that were on it will be gone, and you can interact with whats behind the object now.
Say this was the code I wanted to remove with display: none;. It controls my Currently Watching header:
This is before adding the code, .header_cw: is the pic at the top with the K-on! beach setting.
This is after the code, now we can see Mio was in the background behind the header!
Just wanna make it invisible?
You can use opacity: 0;. It will be invisible, you can't see it, but you can still interact with it and target it with Firebug. The links on it will still work but be invisible. Visibility: hidden; will also clear it but the space it occupies left the same but with less interaction.
Finding individual parts of your layout easier
If you want to remove a particular part but can't target it with the codes you have, you can try to find a more precise code with my advanced tutorial here: http://myanimelist.net/forum/?topicid=410909
Or use the Firefox extension Firebug to find the selector easily, add it to the bottom of the CSS and add display: none to its properties.
I would remove the " Tags" but cant finde any codes about it, than i try it with Firebug, but what Firebug shows are realy confused me. So someone can tell me what i have to paste at what place of my css script?
/* controls what styles you can give to all the anime titles in your list */
.animetitle
{
font-weight: normal;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
text-transform: capitalize;
color: #FFFFFF;
text-decoration: none;
}
/*
copyright contains the "Producted by Garrett Gyssler" text
DO NOT REMOVE OR HIDE THIS DIV
IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO
*/
/*
TABLE ROWS TRANSITION
This controls the part where pics appear on your table rows.
It controls the timing. You can change the numbers.
The first number in each row by default is .5s, this is a half second.
It controls how fast the pic window "opens".
The second number is the time it takes the window to begin opening.
By default its set to .1s, a tenth of a second.
If you changed it to 2s, it would take two seconds for the window to open.
You'll need to change all the rows timings!
They change different browser's timings.
*/
.td1, .td2 {
transition: line-height .5s ease .1s;
-o-transition: line-height .5s ease .1s;
-moz-transition: line-height .5s ease .1s;
-webkit-transition: line-height .5s ease .1s;
}
.td1, .td2 {
line-height: 35px;
}
/*
LIST ROWS HEIGHT ON HOVER
This is the height of the table rows when you put your cursor on them.
*/
tr:hover .td1, tr:hover .td2 {
line-height: 340px;
}
CrAziiJaN21 said: I would remove the " Tags" but cant finde any codes about it, than i try it with Firebug, but what Firebug shows are realy confused me. So someone can tell me what i have to paste at what place of my css script?
/* controls what styles you can give to all the anime titles in your list */
.animetitle
{
font-weight: normal;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
text-transform: capitalize;
color: #FFFFFF;
text-decoration: none;
}
/*
copyright contains the "Producted by Garrett Gyssler" text
DO NOT REMOVE OR HIDE THIS DIV
IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO
*/
/*
TABLE ROWS TRANSITION
This controls the part where pics appear on your table rows.
It controls the timing. You can change the numbers.
The first number in each row by default is .5s, this is a half second.
It controls how fast the pic window "opens".
The second number is the time it takes the window to begin opening.
By default its set to .1s, a tenth of a second.
If you changed it to 2s, it would take two seconds for the window to open.
You'll need to change all the rows timings!
They change different browser's timings.
*/
.td1, .td2 {
transition: line-height .5s ease .1s;
-o-transition: line-height .5s ease .1s;
-moz-transition: line-height .5s ease .1s;
-webkit-transition: line-height .5s ease .1s;
}
.td1, .td2 {
line-height: 35px;
}
/*
LIST ROWS HEIGHT ON HOVER
This is the height of the table rows when you put your cursor on them.
*/
tr:hover .td1, tr:hover .td2 {
line-height: 340px;
}
Zelle said: Is there a way to change the order of the sections (e.g. Watching -> On-Hold -> Dropped -> Completed)?
Wrong tutorial, but the answer is yes, one way is on the All Anime page- move each section with position. I think you reposition the header selectors. Tho every time you do this you'll need to update it for the new animes you added.