Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 29 30 [31] 32 33 » ... Last »
Dec 16, 2013 9:02 PM

Offline
Oct 2013
21
How do I get the show rating to appear directly underneath the title and next to the thumbnail instead of having a column for the rating on the far right? Also, it appears the text that said if a show is airing or not yet aired next to the title has disappeared, and I would love to have that back. Thanks :)

Latest CSS:
https://dl.dropboxusercontent.com/u/246447329/List%20Style.css
MrSmexyTheBeastDec 17, 2013 2:16 PM
Dec 17, 2013 2:00 AM

Offline
Jan 2012
812
Shishio-kun said:


.animetitle {
position: absolute;
left:40px;
margin-top:-13px;
padding-right: 274px !important;}

Will set the default title in a better place, for the hover version I think you will need to import a change do you know how to do that?


Hi Shishio-kun

Thanks but I was wondering if its possible to make the table smaller as its too large while the animetitle doesn't join together with the anime cover. Sorry I have no clue on how to do imports at all.

Yahallo!
Yatta!
Baka!




<!
"Humans, your existence was a mistake. Conflicts, lies, jealously, greed. You once caused me to lose everything and today I will devour everything... Because I am the Valkyrie Goddess">
Dec 17, 2013 5:01 AM

Offline
Jan 2012
1578
Try:
Dec 17, 2013 7:38 AM

Offline
Nov 2013
44
Hey. So, I've been trying to create my own anime list layout but I suck at it since it's my first time trying it. Anyway, I wanted to know if there's any way of displaying all animes in a grid rather than a list (somewhat similar to how animes are displayed here: http://anichart.net/winter). The list I'm using now is far from finished, and that's why I need some help if possible. Thanks in advance.
Dec 17, 2013 8:17 AM

Offline
Aug 2013
733
al_exs said:
rasenshiruken973 said:
I have two questions. First, how do you change the colour of the hover on the anime titles, but not the actual text, I mean the box that it's on. Like for example on this list, it lights up green http://tinypic.com/view.php?pic=2w3cavo&s=5#.Uq826_RdXps Mine is grey atm and I can't find where to change the colour.

Second, http://myanimelist.net/forum/?topicid=412713 I want that style of Watching, Completed,On Hold, etc, but I don't know which part of the code to copy. It's these: http://i.imgur.com/VImNB.png

I'm not very good at this stuff so sorry if I said something really stupid >.<


1.- in this part, change for the color what you want:

.category_totals:hover, .td1:hover, .td2:hover, #grand_totals:hover, #copyright:hover {
background-color: black;
...
}
also if you want to be a little transparent, add opacity: 0.8; just below background-color.


2.- Just add at the bottom of the CSS the following code, thats the part of the code for headers.



I got the hover colour and transparency now. Thank you!! :D

But that CSS code for the categories didn't work for me :( I pasted it on the end exactly as it is but still no change...
Dec 17, 2013 8:50 AM

Offline
Jan 2012
1578
Be attentive
Dec 17, 2013 5:34 PM

Offline
Feb 2010
12645
MrSmexyTheBeast said:
How do I get the show rating to appear directly underneath the title and next to the thumbnail instead of having a column for the rating on the far right? Also, it appears the text that said if a show is airing or not yet aired next to the title has disappeared, and I would love to have that back. Thanks :)


To get your airing text back:


.animetitle + small {
padding-left: 5px;
font-size: 12px !important;
}


For the rating under the title, you can't select the text of rating the same way you can select the tags text but for your list in particular, but you could use


tbody .table_header:nth-of-type(6) {
background: transparent;
width: 1px !important;
font-size: 0;
color: transparent;
}

tbody td:nth-of-type(6) {
background: transparent !important;
position: absolute;
left: 75px;
margin-top: 20px;
text-align: left;
}


and move the ratings table under the anime title. But this makes the edge jagged again (Chrome only). The way I fixed that with tags before wouldn't work with this since tags has separate text and I don't see how to target just the text in ratings.. so I use this to fix it for myself in Chrome and not affect Firefox. I don't know how it will look on your list since you use might have a different resolution but if it works then problem solved


tbody td:nth-of-type(2) {
width: 600px;
}


Also you need to remove the "Read more at.." line from the bottom of your CSS; for more info click the spoiler on front page of club for update on this
Dec 17, 2013 5:45 PM

Offline
Feb 2010
12645
You also need

.table_header:nth-last-of-type(2) {
border-radius: 0 10px 0 0;
}

for last rounded corner
Dec 17, 2013 7:46 PM

Offline
Oct 2013
21
Shishio-kun said:
You also need

.table_header:nth-last-of-type(2) {
border-radius: 0 10px 0 0;
}

for last rounded corner


Thank you! Everything works...near perfectly. Unfortunately, it seems that getting rid of some of the problems always creates a new one. So... I was wondering if you could fix this:
http://prntscr.com/2c0m9f
http://prntscr.com/2c0mbt
http://prntscr.com/2c0mgz


...without having to change back the ratings to the way they were before, since I really like them underneath the title. Much obliged, and thank you so much for everything you've done so far. It truly is appreciated :)
Dec 17, 2013 8:26 PM

Offline
Jul 2012
429
Hello.

First I want to thank Shishio-kun for all of these tutorials, I am sure they took a lot of time to arrange and they are very helpful!

I am tweaking a list style shared by b1o2r3i4s5, and have been tearing out my hair trying to get the .table_header to display as a different color from everything else (including the "Tags" text, as you can see, since it's not a link, it's white).

http://oi44.tinypic.com/qxwjmg.jpg

The code has:

.td1, .td2, .table_header {padding: 2px 3px;}

a {color: #66CCFF; text-decoration: none;}
a:hover {text-decoration: underline;}

I tried to pull .table_header out of that and create it's own section that read something like:

.table_header
{
font-weight: bold;
padding: 3px;
text-align:center;
color: #fff
font-size: 15px;
}

...but nothing changes. I tried doing the :inspect element thing, but that's a little over my head :(
Dec 17, 2013 9:00 PM

Offline
Jul 2013
381
AholePony said:
Hello.

First I want to thank Shishio-kun for all of these tutorials, I am sure they took a lot of time to arrange and they are very helpful!

I am tweaking a list style shared by b1o2r3i4s5, and have been tearing out my hair trying to get the .table_header to display as a different color from everything else (including the "Tags" text, as you can see, since it's not a link, it's white).

http://oi44.tinypic.com/qxwjmg.jpg

The code has:

.td1, .td2, .table_header {padding: 2px 3px;}

a {color: #66CCFF; text-decoration: none;}
a:hover {text-decoration: underline;}

I tried to pull .table_header out of that and create it's own section that read something like:

.table_header
{
font-weight: bold;
padding: 3px;
text-align:center;
color: #fff
font-size: 15px;
}

...but nothing changes. I tried doing the :inspect element thing, but that's a little over my head :(


If I understood well: you want to change the color of all the text in .table_header.

Then, the solution:

.table_header, .table_header a, .table_header strong
{color: red !important;}


Just change out the red to your preffered color :)
Dec 17, 2013 9:24 PM

Offline
Jan 2012
1578
AholePony said:

I am tweaking a list style shared by b1o2r3i4s5, and have been tearing out my hair trying to get the .table_header to display as a different color from everything else (including the "Tags" text, as you can see, since it's not a link, it's white).

Selector for header links color:

.table_headerLink { color: #FFFFFF; }
Dec 17, 2013 9:29 PM

Offline
Jul 2012
429
kuronekodesu said:


If I understood well: you want to change the color of all the text in .table_header.

Then, the solution:

.table_header, .table_header a, .table_header strong
{color: red !important;}


Just change out the red to your preffered color :)


That did the trick! Thank you so much for the help! I didn't know that there was a table header a and strong too :-P

So my next question, is this had code to highlight whole rows on hover.


Never mind I found it :)

AholePonyDec 17, 2013 9:44 PM
Dec 17, 2013 9:45 PM

Offline
Jan 2012
1578
MAL standard CSS editor doesn't allow >, table, tbody and so on
Instead of

table:hover tbody tr .td1, table:hover tbody tr .td2

you can use

tr:hover .td1, tr:hover .td2
Dec 17, 2013 9:45 PM

Offline
Feb 2010
12645
MrSmexyTheBeast said:
Shishio-kun said:
You also need

.table_header:nth-last-of-type(2) {
border-radius: 0 10px 0 0;
}

for last rounded corner


Thank you! Everything works...near perfectly. Unfortunately, it seems that getting rid of some of the problems always creates a new one. So... I was wondering if you could fix this:
http://prntscr.com/2c0m9f
http://prntscr.com/2c0mbt
http://prntscr.com/2c0mgz


...without having to change back the ratings to the way they were before, since I really like them underneath the title. Much obliged, and thank you so much for everything you've done so far. It truly is appreciated :)


You need to point out the problems with text not just screencaps or at least circle them in the shots. I don't see a problem in the first shot.

For the second shot, simple solution, this moves the priority tab and collumn over to the left of the score tab so it doesn't stick out

.table_header:nth-of-type(7){
position: absolute;
left: 600px;
background: transparent;
}

td:nth-of-type(7){
position: absolute;
left: 600px;
background: transparent !important;
}




On third shot, this will increase the width of the table so it matches the original footer.

tbody td:nth-of-type(2) {
width: 650px;
}



If you don't like the position of the edit button after all that can just move it with this code; just increase the numbers after left and margin top.

#list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="] {
left: 0;
margin-top: 0;
position: absolute;
}
Shishio-kunDec 17, 2013 9:50 PM
Dec 18, 2013 3:35 AM

Offline
Jan 2012
812
Hahaido said:
Try:


Hi Hahaido, thank you very much thats what I was just looking for :)

I just want to say Hahaido+ shishio-kun, thank you both for helping me out

Yahallo!
Yatta!
Baka!




<!
"Humans, your existence was a mistake. Conflicts, lies, jealously, greed. You once caused me to lose everything and today I will devour everything... Because I am the Valkyrie Goddess">
Dec 18, 2013 2:11 PM

Offline
Oct 2013
21
Shishio-kun said:

You need to point out the problems with text not just screencaps or at least circle them in the shots. I don't see a problem in the first shot.




I apologize for not being clear with the screenshots. The problem is that the list isn't centered with the top logo and the section titles like it used to be.
http://prntscr.com/2c784u

As you can see in that screenshot, "currently airing is not centered with the list. However, instead of moving the titles to the left, I would like to move the list to right. Also, even after inputting your code, the bottom of each section still looks like this:
http://prntscr.com/2c78jc

However, the priority problem has been fixed, so thank you. The corner on the plan to watch list hasn't been rounded though.
http://prntscr.com/2c795w

In advance, thank you for all you've done for me so far, and I apologize that I've been asking so much. You've been a huge help. If you need to see my latest CSS, this is it:
https://dl.dropboxusercontent.com/u/246447329/Latest%20CSS.css

Also, I just realized that my "all anime" button that usually appears underneath my other buttons disappeared, so I'm not sure what could be causing that.
http://prntscr.com/2c85tv
MrSmexyTheBeastDec 18, 2013 4:00 PM
Dec 18, 2013 5:01 PM

Offline
Feb 2010
12645
MrSmexyTheBeast said:


I apologize for not being clear with the screenshots. The problem is that the list isn't centered with the top logo and the section titles like it used to be.
http://prntscr.com/2c784u

As you can see in that screenshot, "currently airing is not centered with the list. However, instead of moving the titles to the left, I would like to move the list to right. Also, even after inputting your code, the bottom of each section still looks like this:
http://prntscr.com/2c78jc

However, the priority problem has been fixed, so thank you. The corner on the plan to watch list hasn't been rounded though.
http://prntscr.com/2c795w

In advance, thank you for all you've done for me so far, and I apologize that I've been asking so much. You've been a huge help. If you need to see my latest CSS, this is it:
https://dl.dropboxusercontent.com/u/246447329/Latest%20CSS.css

Also, I just realized that my "all anime" button that usually appears underneath my other buttons disappeared, so I'm not sure what could be causing that.
http://prntscr.com/2c85tv



Find .header_cw and other headers, change the background position %'s to move the title's position.

You move the list with

#list_surround {
left: ##% !important;


found at the bottom of the list but there are several versions, you need to adjust the one that is for your resolution size. By adjusting the width % here too, you can also change the list size so it matches the footer. Whichever one works for your list depends on your screen size. They are supposed to be adjusted for each resolution but you've made alterations not intended so its thrown these out of order.


For rounded progress corner should be
tbody .table_header:nth-of-type(5){
border-radius: 0 10px 0 0 !important;}



Override other All anime button codes with !important tags, customize as you want (you must paste this at the bottom)

#list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected {
background-image: url("http://i.imgur.com/HabwKPs.png") !important;
background-position: 100% 0 !important;
width: 270px !important;
top: 710px !important;
left: 150px !important;
position: fixed !important;
}
Dec 18, 2013 8:15 PM

Offline
Jan 2012
1578
I really don't understand why are you using this huge construction of selectors for category menu? Why don't you use this example code (for "all menu") instead:
.status_not_selected:last-child, .status_selected:last-child
Dec 18, 2013 10:09 PM

Offline
Feb 2010
12645
Hahaido said:
I really don't understand why are you using this huge construction of selectors for category menu? Why don't you use this example code (for "all menu") instead:
.status_not_selected:last-child, .status_selected:last-child



Yeah he could try to use that instead and see if its a shorter replacement. Anyways this questions come up before; whenever we used other selectors like that in the past for the buttons they always ended up having some errors and compatibility issues. So the big cluster selectors have just been very solid and some of us still use prefer it instead.
Dec 18, 2013 10:25 PM

Offline
Jan 2012
1578
Show me issues caused by using short construction and I will shut up for ever
Dec 18, 2013 11:34 PM

Offline
Feb 2010
12645
Hahaido said:
Show me issues caused by using short construction and I will shut up for ever


sorry idr, last time was a while ago! I don't even remember the layout it happened on

I should use short selectors on a new tutorial for the category menu tho. Then the issues can be narrowed down when they come up again. Its also one of the last really popular things MAL in general doesn't have a good grasp on yet
Dec 19, 2013 12:40 AM

Offline
Apr 2012
181
I always prefer use imports with #list_surround > table:first-of-type to make the Category Menu, I think is a little cleaner and not that hard to understand for people with 0 or a little bit of CSS knowledge.

With that using td:first/last/nth-of-type make simplier to stylize them.
al_exsDec 19, 2013 12:47 AM
Dec 19, 2013 4:59 AM

Offline
Jul 2013
381
I agree with al_exs, those are the selectors I am using as well. But I'm not using the > sign O.o
Dec 19, 2013 5:48 AM

Offline
Jul 2013
381
Is there any way to edit the edit pop-up? I've tried several things and none seem to work ;_;
Dec 19, 2013 8:47 AM

Offline
Jan 2012
1578
You mean a window that appears on add/edit button press? This is a part of the code from one of my layouts:

* ~Add~ form */
#fancybox-wrap { position: fixed !important; }

/* Disabling default form outer area effects */
div#fancy-bg-n, div#fancy-bg-ne, div#fancy-bg-e, div#fancy-bg-se, div#fancy-bg-s, div#fancy-bg-sw, div#fancy-bg-w, div#fancy-bg-nw { background: none !important; }

/* Custom form outer area effects */
#fancybox-outer {
box-shadow: 0 0 20px rgba(220, 209, 207, 1);
-o-box-shadow: 0 0 20px rgba(220, 209, 207, 1);
-moz-box-shadow: 0 0 20px rgba(220, 209, 207, 1);
-webkit-box-shadow: 0 0 20px rgba(220, 209, 207, 1);
}

/* Form background color*/
#fancybox-frame { background-color: rgba(238, 237, 193, 1) !important; }

/* Overlay effect when form is showed */
#fancybox-overlay {
opacity: .5 !important;
background-color: rgba(220, 209, 207, 1) !important;
}

/* ~Close~ form button */
#fancybox-close {
height: 48px !important;
width: 48px !important;
background: url('http://dl.dropbox.com/u/78192465/MyAnimeList/Zen/Images/close.png') no-repeat !important;
}
/* ~Add~ form */


hope you will figure out ;)
Dec 19, 2013 3:32 PM

Offline
Feb 2010
12645
FerretBuster said:
Hey guys this is my first post on MAL, so hi :D.

I've been browsing all day through different list styles etc.. , but I found this one person's style and really liked it. Linky: http://myanimelist.net/animelist/Syrosu

The problem is that after trying to copy their css code, even if I try to copy it directly it doesn't work. I'm not sure why either - would I be right in nabbing the code from here: https://dl.dropboxusercontent.com/u/188037746/Syrosu-5cmps.css?

Because when I do that I run into all sorts of trouble :(

Help please!


I think that layout CSS you've linked to needs to be imported. It doesn't work right on my list when I just paste the layout CSS to my edit box. This is probably because codes in Syrosu's CSS don't work on MAL so they need to be imported.

Their CSS edit box is set up this way from looking at it, you'd have to do the same.

@import url(https://dl.dropboxusercontent.com/u/188037746/Syrosu-5cmps.css);
#copyright {visibility: visible;}


btw I'm telling you to NOT paste their import into your edit box without their permission- because it uses their bandwidth and some ppl don't want their dropbox bandwidth used by others. So if they don't allow you too, you'll have to take their layout CSS from the link you posted yourself and put it into your own dropbox import and put that into your CSS edit box, similar to how Syrosu did.

Also, for your list to look like theirs, it seems you must have the same list settings too, changed here:
http://myanimelist.net/editprofile.php?go=listpreferences
Dec 19, 2013 3:57 PM
Offline
Dec 2013
2
Shishio-kun said:
FerretBuster said:
Hey guys this is my first post on MAL, so hi :D.

I've been browsing all day through different list styles etc.. , but I found this one person's style and really liked it. Linky: http://myanimelist.net/animelist/Syrosu

The problem is that after trying to copy their css code, even if I try to copy it directly it doesn't work. I'm not sure why either - would I be right in nabbing the code from here: https://dl.dropboxusercontent.com/u/188037746/Syrosu-5cmps.css?

Because when I do that I run into all sorts of trouble :(

Help please!


I think that layout CSS you've linked to needs to be imported. It doesn't work right on my list when I just paste the layout CSS to my edit box. This is probably because codes in Syrosu's CSS don't work on MAL so they need to be imported.

Their CSS edit box is set up this way from looking at it, you'd have to do the same.

@import url(https://dl.dropboxusercontent.com/u/188037746/Syrosu-5cmps.css);
#copyright {visibility: visible;}


btw I'm telling you to NOT paste their import into your edit box without their permission- because it uses their bandwidth and some ppl don't want their dropbox bandwidth used by others. So if they don't allow you too, you'll have to take their layout CSS from the link you posted yourself and put it into your own dropbox import and put that into your CSS edit box, similar to how Syrosu did.

Also, for your list to look like theirs, it seems you must have the same list settings too, changed here:
http://myanimelist.net/editprofile.php?go=listpreferences


Well I deleted my post in the rush of me thinking I had it figured out. In short : I hadn't. LOL. Anyway i've read your post and it makes perfect sense, and yes of course I don't want to be stealing someone elses bandwidth which I agree with. I can use my own dropbox for that.

Cheers for the help!
Dec 19, 2013 7:18 PM

Offline
Jul 2013
381
Hahaido said:
You mean a window that appears on add/edit button press? This is a part of the code from one of my layouts:

hope you will figure out ;)


ah yes, that makes sense perfectly. I've actually figured the background, but I was wondering about fonts and buttons? I guess it isn't possible because it's a different html structure than the main list?

@Ferret
Oh it's a layout I've designed :D Glad you like it :D And it's as Shishio said - I've used some selectors which aren't supported in the MAL's CSS box ^^
Dec 19, 2013 8:16 PM

Offline
Jan 2012
1578
Yes, you can't stylize buttons and fonts, because MAL uses separate CSS for them so it cannot be replaced by user
Dec 19, 2013 8:20 PM
Offline
Jun 2013
3
Hi there, I started using the Magica Premade with the plan to edit it to suit my tastes, but I've run into a problem I can't seem to fix myself. The table headers are offset from the content, resulting in some annoying empty space and misaligned columns. You can see how it looks on my main monitor (1920x1080) here.

Putting it onto my second screen (1024x768) yields a different, but still incorrect result.

I gather this is an issue that is present due to not having a specific resolution, but I'm at a loss as to what I should be changing in the stylesheet to make it work on my main screen (I couldn't care less for any resolution other than 1920x1080 at this point :P). Any help would be greatly appreciated.

Thanks for your time.
Dec 19, 2013 11:42 PM

Offline
Jan 2012
1578
2MrSmexyTheBeast: don't forget to enable tags
HahaidoDec 20, 2013 12:35 AM
Dec 20, 2013 12:51 AM
Offline
Dec 2013
2
kuronekodesu said:
Hahaido said:
You mean a window that appears on add/edit button press? This is a part of the code from one of my layouts:

hope you will figure out ;)


ah yes, that makes sense perfectly. I've actually figured the background, but I was wondering about fonts and buttons? I guess it isn't possible because it's a different html structure than the main list?

@Ferret
Oh it's a layout I've designed :D Glad you like it :D And it's as Shishio said - I've used some selectors which aren't supported in the MAL's CSS box ^^


Yea I think I've customised it to my liking now :) I'll make sure to credit you in the comments :D
Dec 20, 2013 7:12 AM

Offline
Dec 2013
192
Hey there,
I´m quite happy with my List

But since it´s just a little bit customized version of Shishio-kuns customized version of the clean black design of erlbaum and I got no idea about css a few hours ago ( its not that much now either..) I´m on my Limit.

As I said i´m really satisfied with my actual list style, the only thing that bugs me is the fact, that theres a underline across all text and i don´t know where the command is :l

I think it´s outside of the fontssection since I already tried to replace it with a random fontssection and there still were does lines.

CSS:


I bet it will turn out to be quite obvious were the problem is, but im completely new and got no idea :l

I´d be really gratefull if someone could mark the line that causes the "problem"

Thanks in advance,

Spyclist
fatmouth7 said:
Balls-to-the-Wall action that makes your testosterone levels skyrocket.


Dec 20, 2013 7:57 AM

Offline
Jul 2010
93
@Spyclist
in a, a:visited change:
text-decoration: underline;
to:
text-decoration: none;
Dec 20, 2013 8:17 AM

Offline
Dec 2013
192
Edit: Fixed it, thank you very much dzikibambus :)
SpyclistDec 20, 2013 9:18 AM
fatmouth7 said:
Balls-to-the-Wall action that makes your testosterone levels skyrocket.


Dec 20, 2013 10:04 PM
Offline
Jun 2013
3
SparkyRailgun said:
I gather this is an issue that is present due to not having a specific resolution, but I'm at a loss as to what I should be changing in the stylesheet to make it work on my main screen (I couldn't care less for any resolution other than 1920x1080 at this point :P). Any help would be greatly appreciated.

Thanks for your time.


Adding to this, I booted up Firefox and IE and the list looked fine, so it's obviously a problem with Chrome. I haven't had any issues in the past, so perhaps there's some thing that aren't done correctly for Chrome in the style? I'll have a look, but if anyone knows the exact reason it'd be appreciated.
Dec 27, 2013 10:49 PM

Offline
Feb 2010
12645
SparkyRailgun said:
SparkyRailgun said:
I gather this is an issue that is present due to not having a specific resolution, but I'm at a loss as to what I should be changing in the stylesheet to make it work on my main screen (I couldn't care less for any resolution other than 1920x1080 at this point :P). Any help would be greatly appreciated.

Thanks for your time.


Adding to this, I booted up Firefox and IE and the list looked fine, so it's obviously a problem with Chrome. I haven't had any issues in the past, so perhaps there's some thing that aren't done correctly for Chrome in the style? I'll have a look, but if anyone knows the exact reason it'd be appreciated.


I know this has been up for a while; I'm not ignoring your question but I'm in the process of updating the Magica layout and ironing out all these issues in Chrome and higher resolutions. The recommended approach will probably be you'll have to replace the current layout with the new one and apply the changes you've made. So your current layout should be replaced later and I don't really want to apply changes and answers to it when it will be simply obsolete later
Dec 27, 2013 10:53 PM

Offline
Feb 2010
12645
So earlier in this topic before Christmas ppl were talking other selectors they use for the category buttons; so what is recommended I replace these with (must have the same functions as stated in the notes above each selector). These are my old ones but I'd like to have shorter selectors for premade-layout purposes


/*
Current link when viewing Current only
*/
.status_selected {
background-color: violet !important;
}

/*
Current link when NOT viewing Current
*/
.status_selected, .status_not_selected {
background: none repeat scroll 0 0 purple;
}




/*
Complete link when viewing Complete only
*/
.status_not_selected + .status_selected {
background-color: pink !important;
}

/*
Complete link when NOT viewing Complete
*/
.status_selected + .status_not_selected, .status_not_selected + .status_selected, .status_not_selected + .status_not_selected {
background: none repeat scroll 0 0 red;
}




/*
On-hold link when viewing On-hold only
*/
.status_not_selected + .status_not_selected + .status_selected {
background-color: blue !important;
}

/*
On-hold link when NOT viewing On-hold
*/
.status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected {
background: none repeat scroll 0 0 navy;
}



/*
Dropped link when viewing Dropped only
*/
.status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected {
background: none repeat scroll 0 0 lime !important;
}

/*
Dropped link when NOT viewing Dropped
*/
.status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected {
background: none repeat scroll 0 0 green;
}



/*
Planned link when viewing Planned only
*/
.status_not_selected + .status_not_selected + .status_not_selected + .status_selected {
background: none repeat scroll 0 0 yellow !important;
}

/*
Planned link when NOT viewing Planned
*/
.status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected {
background: none repeat scroll 0 0 orange;
}



/*
All anime/manga link when viewing All Anime/Manga only
*/
.status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected {
background: none repeat scroll 0 0 brown !important;
}

/*
All anime/manga link when NOT viewing All anime/manga
*/
.status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected {
background: none repeat scroll 0 0 tan;
}

Dec 28, 2013 3:01 AM

Offline
Jul 2013
381
just tested this and it works.
EDIT: tested in Google Chrome (31.0.1650.63 m), Mozilla Firefox (26.0) and Opera (18.0.1284.68)
EDIT 2: tested in Safari (5.1.7 for Windows)

/* Current link when viewing Current only */
.status_selected:first-of-type
{background-color: violet !important;}

/* Current link when NOT viewing Current */
.status_not_selected:first-of-type
{background: none repeat scroll 0 0 purple;}

/* Complete link when viewing Complete only */
.status_selected:nth-of-type(2)
{background-color: pink !important;}

/* Complete link when NOT viewing Complete */
.status_not_selected:nth-of-type(2)
{background: none repeat scroll 0 0 red;}

/* On-hold link when viewing On-hold only */
.status_selected:nth-of-type(3)
{background-color: blue !important;}

/* On-hold link when NOT viewing On-hold */
.status_not_selected:nth-of-type(3)
{background: none repeat scroll 0 0 navy;}

/* Dropped link when viewing Dropped only */
.status_selected:nth-of-type(4)
{background: none repeat scroll 0 0 lime !important;}

/* Dropped link when NOT viewing Dropped */
.status_not_selected:nth-of-type(4)
{background: none repeat scroll 0 0 green;}

/* Planned link when viewing Planned only */
.status_selected:nth-of-type(5)
{background: none repeat scroll 0 0 yellow !important;}

/* Planned link when NOT viewing Planned */
.status_not_selected:nth-of-type(5)
{background: none repeat scroll 0 0 orange;}

/* All anime/manga link when viewing All Anime/Manga only */
.status_selected:last-of-type
{background: none repeat scroll 0 0 brown !important;}

/* All anime/manga link when NOT viewing All anime/manga */
.status_not_selected:last-of-type
{background: none repeat scroll 0 0 tan;}
nymphiaeDec 28, 2013 3:14 AM
Dec 28, 2013 9:58 AM

Offline
Feb 2010
12645
Thanks this replaces the old selectors just fine, good work.
Dec 28, 2013 1:23 PM
Offline
Oct 2013
43
how would you go about setting up favorite characters sorta like how this guy has it
http://myanimelist.net/profile/captainmorgan
Dec 28, 2013 1:36 PM

Offline
Feb 2010
12645
Kirikatsu said:
how would you go about setting up favorite characters sorta like how this guy has it
http://myanimelist.net/profile/captainmorgan


You go to here
http://myanimelist.net/editprofile.php?go=favorites

and go down to Find Characters, search your characters you want then click their names- you can update the order on the right of where you searched the names


edit: Oh, you mean like on his About me don't you lol? Its not too hard. You just have to get the pics of them and crop them down to the size you want (can do that in Gimp or Microsoft Paint even), save them, then you can post them to your About Me under your description.

How to crop/resize easily in MS Paint (help with Gimp too):
http://myanimelist.net/forum/?topicid=496785

How to post images, do big text, and put them in spoilers is covered here:
http://myanimelist.net/forum/?topicid=496203
Shishio-kunDec 28, 2013 1:44 PM
Dec 28, 2013 5:34 PM

Offline
Feb 2010
12645
Kyuutoryuu said:
In this List Layout: http://dl.dropboxusercontent.com/u/78340470/Club%20layouts/Requests/unknown1.css

there is no "Edit" or "More" button next to each anime title. How would you go about fixing this bug and adding those buttons to the code? (the Edit/More are also featured in the default MAL lists)


Not a bug, buttons were removed with

td:nth-of-type(2) small a {
display:none;
}


you'll have to delete this code to bring the buttons back. But the more# button is not useable with this kind of DVD cover display. You have to use a animetitle style display (either pick a list with it, easy- or add it to your layout manually, can be hard) for that or use a code to remove the more button I can give it if you want it
Shishio-kunDec 28, 2013 5:39 PM
Dec 28, 2013 7:47 PM

Offline
Aug 2013
1336
So the first step would be to delete that code?
Then how can I add an "animetitle style display" to my layout?

I want both buttons on the current layout I'm using.
Dec 29, 2013 8:48 AM

Offline
Jun 2012
4025
Hi everyone, I have added a couple of lines to my code (copy-paste) from another person's list, but I don't get the same look.
My anime list:
http://myanimelist.net/animelist/marcosmk&status=1&order=0
His anime list:
http://myanimelist.net/animelist/HostClub

What I was looking to add, was the menu at the side, but I get a strange black line above the list and a black triangle at the side of the menu.

This is my code so far, thanks in advanced:

Dec 29, 2013 12:54 PM

Offline
Feb 2010
12645
Kyuutoryuu said:
So the first step would be to delete that code?
Then how can I add an "animetitle style display" to my layout?

I want both buttons on the current layout I'm using.


Yes find an delete the code I pointed out with bold, I think its near the bottom of your CSS. That brings back both buttons but more is still unusable since you're using a #more style CSS for displaying covers.

To use both links. The edit button is always available no matter what cover you use, no cover CSS I know of effects that link. That layout in particular removed both buttons, either at request or just for style/streamline purposes. Only the #more button is disabled thru many cover styles (it uses the more section out of convenience). To gain use of the more button with covers, you either have to change your list over from a #more style to an animetitle display style:
http://myanimelist.net/forum/?topicid=453755

after that you'd remove the mal pic and anime cover imports from the top of your CSS. And you can customize the display style in unique ways than seen there. You can play with it on your own, learn CSS to better control it or ask here for a certain look to the covers (give us time tho this stuff is very hard sometimes and all volunteered time).

Or you'd use a layout that doesn't use #more for cover display. You can tell from the top of the CSS if a layout uses #more or not. If not, their covers import (found near the top) will say "animeafter"
@import "https://dl.dropboxusercontent.com/u/78340470/animeafter.css";

or "animetitle"

@import "http://dl.dropbox.com/u/78340470/animetitle.css";

and if they do use #more, it will say just "anime"

@import "http://dl.dropbox.com/u/78340470/anime.css";

Psychopass layout uses animeafter for example (most lists with covers use #more tho, since this is easiest to customize and most ppl don't care about more button).
http://myanimelist.net/forum/?topicid=605019
Shishio-kunDec 29, 2013 1:01 PM
Dec 29, 2013 1:43 PM

Offline
Feb 2010
12645
marcosmk said:
Hi everyone, I have added a couple of lines to my code (copy-paste) from another person's list, but I don't get the same look.
My anime list:
http://myanimelist.net/animelist/marcosmk&status=1&order=0
His anime list:
http://myanimelist.net/animelist/HostClub

What I was looking to add, was the menu at the side, but I get a strange black line above the list and a black triangle at the side of the menu.

This is my code so far, thanks in advanced:



Its left over links present on your list, .status_selected and .status_not_selected, your CSS colors black you can color them transparent in your CSS
Dec 29, 2013 4:35 PM

Offline
Jun 2012
4025
Thanks Shishio, that fixed the black line at the top, but there is still the strange black triangle coming out of the menu.
And if it isn't to much trouble, cloud you also tell me how to fix the top bar together with the menu? In order for it to also stay fixed on the screen.
Dec 29, 2013 9:10 PM

Offline
Aug 2013
1336
@Shishio
Thanks for all your help. I'll see what I can do.

edit: I've decided to just remove the "more" button from my Anime List with the proper code. However, that leaves the edit button kind of floating in the center. Is there a way to reposition the edit button more to the right, where the "more" button used to be?
KyuutoryuuDec 30, 2013 12:11 AM
Reply Disabled for Non-Club Members
Pages (159) « First ... « 29 30 [31] 32 33 » ... Last »

More topics from this board

» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )

Shishio-kun - Jul 21, 2017

381 by KabukiChouNights »»
Sep 13, 10:56 AM

» theme help

threat - Jul 5

5 by Zaryf »»
Aug 21, 5:46 AM

» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )

Valerio_Lyndon - Apr 19, 2018

1261 by KiranaStarr »»
Aug 16, 5:48 PM

» [CSS] ⭐️ Customize your List Cursor + Cursor Fixes

Shishio-kun - Mar 8, 2021

30 by Shishio-kun »»
Jul 28, 3:17 AM

» How To Have Different Banner/Cover image & Background Image For Manga & Anime Lists

YasminaRegina - Jul 25

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