Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 53 54 [55] 56 57 » ... Last »
Mar 9, 2015 11:36 PM

Offline
Feb 2010
12661
Takana_no_Hana said:
Hi, I just want to ask that are there any way to implement this scrolling banner into my list?

Here are the codes:



I figure out it has something to do with inlineContent and I've been playing with the codes for hours but no result :/
When I added that code to the list, it didn't show. Then I changed the value and sometimes it shows but the other background images or animation just got lost.


You're already using inline content for the secondary background and animated sakura petals. So you could use a different selector for the scrollbar, or a different one for the second bg/petals.
Mar 9, 2015 11:43 PM

Offline
Nov 2009
1632
Shishio-kun said:
Takana_no_Hana said:
Hi, I just want to ask that are there any way to implement this scrolling banner into my list?

Here are the codes:



I figure out it has something to do with inlineContent and I've been playing with the codes for hours but no result :/
When I added that code to the list, it didn't show. Then I changed the value and sometimes it shows but the other background images or animation just got lost.


You're already using inline content for the secondary background and animated sakura petals. So you could use a different selector for the scrollbar, or a different one for the second bg/petals.


Hi, thanks for the answer but I'm not quite sure what are the other selector. Can you give me some hindsight?
Mar 11, 2015 1:57 PM

Offline
Feb 2010
12661
You need to replace the inline content selectors with another selector you're not using, used some in the codes below. Now you can use inline content for the scrollbar. There's already a scrollbar topic too. I think this is easier cuz inlinecontent is best for scrollbars, its picky

Mar 11, 2015 6:50 PM

Offline
Nov 2009
1632
Thank you very much for the answer, but currently the images on the right is on top of my list. I couldn't figure out how to put them under the list.


I guess i will have to find other way or give up on this, anyway I really appreciate your help.
Takana_no_HanaMar 11, 2015 7:00 PM
Mar 11, 2015 10:46 PM

Offline
Feb 2010
12661
Takana_no_Hana said:
Thank you very much for the answer, but currently the images on the right is on top of my list. I couldn't figure out how to put them under the list.


I guess i will have to find other way or give up on this, anyway I really appreciate your help.


Why are you adding the animated intro now? Also the instructions for that trick said to add it these kinda changes to the bottom, always read the whole topic. It makes for less errors and is easier for us to fix your code later. The way you lower stuff from the background or foreground is with z-index (-1 is behind the list). Thats a different topic altogether anyways. The animated scrollbar is here:
http://myanimelist.net/forum/?topicid=1329599


You can use copyright selector's before and after instead of "status etc etc before and after", like here. I took some time and added all that and moved all these new changes to the bottom so its easier to mess with them:
Mar 11, 2015 11:43 PM
Offline
Oct 2013
14
Hi there!

I've been trying to make rounded edges to every table and I'm currently stuck at the category bar. I just cant figure out how to make it rounded.

Here's the image of what I'm making: http://i.imgur.com/WQSESJ4.png

I want to have rounded edges for the Category Bar, so I tried adding border-radius to the
.status_selected/ .status_not_selected, but that only changes individual bars for each link and that is not what I exactly had in mind.

I guess one way to resolve my problem would be to make "Currently watching" have rounded edges on the left side while "All Anime" had them on the right side, but I don't really have a clue how to do that either.

Here's the code:
Mar 13, 2015 3:34 AM

Offline
Nov 2013
97
Hey guys,
Can someone tell me, // http://imgur.com/fSwfcvS //
how do i make it so that the "edit" and "score" rows are vertically in line? The problem is, the type - special has too many characters / too big so it pushes the other 2 rows to the left. I'm guessing i need to adjust how many pixels the row can be wide, but i got no idea how to do it.

My code


Hoping for a reply!

-S
Mar 13, 2015 5:20 AM

Offline
Nov 2011
304
@AnthonyDraft
You could select the whole table with links with this selector:
#list_surround table[align="center"]:first-of-type {
border-radius: 20px;
}

It has a drawback though: you have to remove background color from .status_selected and .status_not_selected and set it to this table.
What you're asking for are these selectors:
.status_not_selected:first-child, .status_selected:first-child {
border-radius: 20px 0 0 20px;
}
.status_not_selected:last-child, .status_selected:last-child {
border-radius: 0 20px 20px 0;
}

Here first-child is the letfmost row, last-child is the rightmost


@Senat0r
The problem is caused by the custom font you're using: it's too large. One way to fix it would be adding this to your code:
td[width='50'] { width: 65px }

This will expand columns in both list and in table header.
Mar 13, 2015 5:33 AM

Offline
Nov 2013
97
VeriTi said:

@Senat0r
The problem is caused by the custom font you're using: it's too large. One way to fix it would be adding this to your code:
td[width='50'] { width: 65px }

This will expand columns in both list and in table header.

It's aliiiiiiive~!
Thanks, that worked out perfectly.

Although, i have one other question, if i may,
http://imgur.com/IEiu6MI Would there be a way to like, make the titles shorter in order to fit them without using double lines etc ? What i mean is , like on the picture , it should look like :
" Ano Natsu de Matteru: Bokutachi wa Koukou Saigo no Natsu. . . " (or something similar) with three dots etc because it's longer than other titles.
Same for the "not aired" or "currently airing" some times they make the titles too long for the list..
SenatorMar 13, 2015 5:55 AM
Mar 13, 2015 11:39 AM
Offline
Oct 2013
14
VeriTi said:
@AnthonyDraft
You could select the whole table with links with this selector:
#list_surround table[align="center"]:first-of-type {
border-radius: 20px;
}

It has a drawback though: you have to remove background color from .status_selected and .status_not_selected and set it to this table.
What you're asking for are these selectors:
.status_not_selected:first-child, .status_selected:first-child {
border-radius: 20px 0 0 20px;
}
.status_not_selected:last-child, .status_selected:last-child {
border-radius: 0 20px 20px 0;
}

Here first-child is the letfmost row, last-child is the rightmost




Thanks! That helped.

Didn't know that "first-child" and "last-child" was universal selector in css. I thought I just had to change those names to the ones I need to. Took me a while to figure that out.
Mar 13, 2015 4:33 PM

Offline
Feb 2015
2987
I have a question about member card frames. Is there a tutorial on how to make custom frames without getting an image and making that a frame?
And how do you make effects
BrianMar 14, 2015 9:05 AM
Mar 15, 2015 9:05 AM
Offline
Oct 2014
24
I'm trying to find this list layout I've been at it for over an hour and am absolutely stumped the link goes to a page and I can't find it on that page or anywhere else in that discussion. Can you like post the code in a spoiler for me. Sorry to bug you but I can't find it on my own. Thanks much!
Animelist
Manga List

Signed - LoveLess_xxx, Casual Anime Watcher, Casual Gamer.
Mar 16, 2015 10:43 AM

Offline
Feb 2011
216
Hi! I need some help, please. I added the tag column to a premade layout and changed its width, but I'm afraid the score and progress columns and "add-more" links got a little bit disorganized and it's killing me! :'(

This image shows one of the most noticeable mismatches

I know there has to be a way to fix it, could someone help me or maybe tell me which tutorial should I look for to fix it? Thanks!!
TatarataMar 16, 2015 12:23 PM
Mar 17, 2015 8:48 AM

Offline
Aug 2014
432
I'm using this to add ellipsis instead of doing a new line on my list(chrome seems to ignore the max-width value for some reasons):

td:nth-of-type(2){
max-width:300px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

td:last-of-type{
max-width:90px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

td:hover{
max-width:100%;
white-space: normal;
text-overflow:clip;
overflow:visible;
max-width:none;
}

It works well on chrome, but on firefox it's very laggy and I can't get it to work properly.

It's supposed to do something like for those who don't use chrome: http://gfycat.com/WhimsicalGiftedAfricanjacana
SatiriquesMar 17, 2015 8:52 AM
Mar 17, 2015 3:46 PM
Offline
Oct 2013
3
Ok, so i finally learned to use CSS (or at least, a little bit) and everything was going great. I got a layout/style from another forum, and even added a cover art + review hover feature. Well, everything is fine except one problem.
There's an overhang under each section where it says "Score", "Type", and "Progress". And if you hover the mouse anywhere under that area, it glitches out the Cover Art/Mini Review hover feature.
Here's my list to show you what i mean.

http://myanimelist.net/animelist/KaynyeEast

Is there any way to remove this overhang, even if it means getting rid of where it says "score", "type", and "progress"?
Or, if theres a way, to move those words to the left, so they still fit over their respective categories?
Any and all help is appreciated!
Mar 19, 2015 7:08 AM

Offline
Nov 2014
5451
Hey guys.

I just noticed when watching my list in mobile version that it uses pictures from MAL, not covers that I learned about here (at least it's true for few examples that I checked). Is there any option to do such thing for my list in normal version? It'd be pretty nice if I didn't have to check for missing covers ever again ^^'
Mar 19, 2015 11:42 AM

Offline
Nov 2011
304
@Terkhev
I don't think so. Mobile version gives you different HTML page than the one you can style.
Mar 22, 2015 9:55 AM
Offline
Jul 2014
4
Hi there. I have a small problem with my list that has been driving me mad. Most covers are of varying sizes, and don't all fit in their display areas well. Is there anyway to make them stretch to fit the area they are in? (That way they don't tile or get cut off)

The code:
Mar 22, 2015 10:48 AM

Offline
Nov 2011
304
@jakeranson
Well there are few ways:

div[id^='more'] { background-size: 100% 100% }
will just stretch it in both dimensions. Downside: fucks up aspect ratio, so covers with huge deviation from your "standard" size will be noticeably stretched.

div[id^='more'] { background-size: cover }
will stretch it maintaining aspect ratio so it always fits but covers may get blurred and some parts of cover may not be visible.
Mar 23, 2015 3:46 AM

Offline
Jan 2011
25
Hi

I have a problem with the animation keyframe. I'm newb and dunno how to make the "red bubbles" to move upwards.

http://myanimelist.net/animelist/wenuchiha
This is the code..

Huehuehue
Mar 23, 2015 4:47 AM

Offline
Aug 2014
432
wenuchiha said:
Hi

I have a problem with the animation keyframe. I'm newb and dunno how to make the "red bubbles" to move upwards.

http://myanimelist.net/animelist/wenuchiha
This is the code..





If you want the cherry blossom to fall down and the red bubbles to go up, you need to separate the image in two different pieces(one with the bubbles only, the other one with the cherry blossom). I can't really do that for you right now since I'm at school. If you give me those pictures, I can help you.
SatiriquesMar 23, 2015 9:14 AM
Mar 23, 2015 5:17 AM

Offline
Jan 2011
25
Satiriques said:
wenuchiha said:
Hi

I have a problem with the animation keyframe. I'm newb and dunno how to make the "red bubbles" to move upwards.

http://myanimelist.net/animelist/wenuchiha
This is the code..





If you want the cherry blossom to fall down and the red bubbles to go up, you need to separate the image in two different pieces(one with the bubbles only, the other one with the cherry blossom). I can't really do that for you right now since I'm at school. If you give me those pictures, I can help you.


I only need help to make the red bubbles goes up. Ignore The cherry blossom- image. I just wanted to test the animation, before editing the image. :)
The image link is: http://i60.tinypic.com/swbafs.png
Thank you !
Huehuehue
Mar 23, 2015 8:47 AM

Offline
Aug 2014
432
wenuchiha said:
Ignore The cherry blossom- image


I can't do that if the bubbles are on the same image as the cherry blossom. I'd edit that for you real quick but I can't do it on paint since it removes the transparent background. If you don't fix your problem until I get home, I'll fix it for you(in like 2-3 hours).
Mar 23, 2015 9:09 AM

Offline
Jan 2011
25
Hi Satiriques

Sorry if i haven't make it clearly, but what i mean by ignore the blossom, is because I will edit the image from bloosom to red bubbles. In result: I'm gonna delete all the blossom and only have the red bubbles, in the final product. What's my problem is I want the images to "floating" upwards. :)
Huehuehue
Mar 23, 2015 9:14 AM

Offline
Aug 2014
432
wenuchiha said:
Hi Satiriques

Sorry if i haven't make it clearly, but what i mean by ignore the blossom, is because I will edit the image from bloosom to red bubbles. In result: I'm gonna delete all the blossom and only have the red bubbles, in the final product. What's my problem is I want the images to "floating" upwards. :)


Oh alright, well I allready answered your question then:

@keyframes sparkle {
0% {
background-position: 0 0px, 0 0;
}
100% {
background-position: 485px -487px, -485px -487px;
}


To make it easy to understand, 0% is the first part of the animation and 100% is the second part. So if the animation delay is, let's say 5 seconds, your background would go from 0px to -487px in y coordinates in 5 seconds using these settings.


edit: just realised I forgot to edit my main post, my bad.
SatiriquesMar 23, 2015 9:22 AM
Mar 23, 2015 3:31 PM

Offline
Jan 2011
25
Okay thanks, but when I look at the code.. It's exactly the same as you have taken from my codes? Did you paste the wrong code or?
And Its not working :(
Huehuehue
Mar 23, 2015 3:41 PM

Offline
Aug 2014
432
wenuchiha said:
Okay thanks, but when I look at the code.. It's exactly the same as you have taken from my codes? Did you paste the wrong code or?
And Its not working :(


You didn't change it when I checked your code, are you replacing it correctly?

http://gfycat.com/EntireBitterKoodoo
Mar 23, 2015 3:55 PM

Offline
Jan 2011
25
Satiriques said:
wenuchiha said:
Okay thanks, but when I look at the code.. It's exactly the same as you have taken from my codes? Did you paste the wrong code or?
And Its not working :(


You didn't change it when I checked your code, are you replacing it correctly?

http://gfycat.com/EntireBitterKoodoo


OMG! You're my hero!!!
But now it only works in Firefox. How do i apply it to Chrome :)?
Huehuehue
Mar 23, 2015 4:20 PM

Offline
Aug 2014
432
wenuchiha said:
Satiriques said:


You didn't change it when I checked your code, are you replacing it correctly?

http://gfycat.com/EntireBitterKoodoo


OMG! You're my hero!!!
But now it only works in Firefox. How do i apply it to Chrome :)?

[quote]
@-webkit-keyframes sparkle
% {
background-position: 0 0px, 0 0;
}
100% {
background-position: 2px -800px, -10px -300px;
}

and

-webkit-animation: 15s linear 0s normal none infinite running sparkle;
Mar 23, 2015 4:38 PM

Offline
Jan 2011
25
Still not working for chrome.

Do I place them correctly?
Huehuehue
Mar 23, 2015 5:13 PM

Offline
Aug 2014
432
wenuchiha said:
Still not working for chrome.

Do I place them correctly?

No, Here:


@keyframes sparkle {
0% {
background-position: 0 0px, 0 0;
}
100% {
background-position: 2px -800px, -10px -300px;
}
}

@-webkit-keyframes sparkle {
0% {
background-position: 0 0px, 0 0;
}
100% {
background-position: 2px -800px, -10px -300px;
}
}

body:after {

animation: 20s linear 0s normal none infinite running sparkle;
-webkit-animation: 15s linear 0s normal none infinite running sparkle;
background-image: url("http://i60.tinypic.com/swbafs.png"), url("http://i60.tinypic.com/swbafs.png");
border-radius: 50em;
bottom: 0;
content: "";
display: block;
height: 100%;
left: 30%;
margin-left: -40%;
position: fixed;
width: 100%;
}
Mar 24, 2015 3:23 AM

Offline
Nov 2009
1632
Hi,

This is what my list looks like when I login(the score has blue shadow):
http://puu.sh/gNAlZ.jpg

This is what it looks like when I logout(the score doesnt have blue shadow style):
http://puu.sh/gNAgK.jpg

Is it possible to change the style from each column(score, progress, type, etc) and display for other people to see, not just yourself?
Takana_no_HanaMar 24, 2015 5:50 AM
Mar 24, 2015 6:06 AM

Offline
Aug 2014
432
}
Takana_no_Hana said:
Hi,

This is what my list looks like when I login(the score has blue shadow):
http://puu.sh/gNAlZ.jpg

This is what it looks like when I logout(the score doesnt have blue shadow style):
http://puu.sh/gNAgK.jpg

Is it possible to change the style from each column(score, progress, type, etc) and display for other people to see, not just yourself?


Try this:
.td1:nth-of-type(3), .td2:nth-of-type(3){
text-shadow: 0 0 3px #5c4ef5, 0 0 2px #5c4ef5, 0 1px 5px #5c4ef5, 0 0 1px #000000;
}
Mar 24, 2015 6:35 AM

Offline
Nov 2009
1632
Satiriques said:
}
Takana_no_Hana said:
Hi,

This is what my list looks like when I login(the score has blue shadow):
http://puu.sh/gNAlZ.jpg

This is what it looks like when I logout(the score doesnt have blue shadow style):
http://puu.sh/gNAgK.jpg

Is it possible to change the style from each column(score, progress, type, etc) and display for other people to see, not just yourself?


Try this:
.td1:nth-of-type(3), .td2:nth-of-type(3){
text-shadow: 0 0 3px #5c4ef5, 0 0 2px #5c4ef5, 0 1px 5px #5c4ef5, 0 0 1px #000000;
}

Thank you, it works like magic xD
Mar 24, 2015 1:10 PM

Offline
Feb 2010
1282
I'm having some problems with my list, so hopefully someone can help me.

The first thing is about corners. I want round corners (and keep my custom headers), but I've only managed to round 3 out 4 corners using:

.table_header:first-of-type {
border-radius: 15px 0px 0px 0px;
}
.table_header:last-of-type {
border-radius: 0px 15px 0px 0px;
}
.category_totals{
border-radius: 0px 0px 15px 15px;
}

With that, every corner but the upper right one gets rounded.

Besides that, I wanted to know if there was a way to use the space topbar with stars (from here) without losing my custom headers.

This is the full code of my list:



And a link to it to make access easier: http://myanimelist.net/animelist/Akai_Shuichi

Thanks in advance!
Akai_ShuichiMar 24, 2015 1:47 PM

People need societies, but they don't necessarily need nations. - Yang Wen-li
Mar 24, 2015 9:06 PM

Offline
Nov 2011
304
@Akai_Shuichi
The problem is with this selector:
.table_header:last-of-type {
border-radius: 0px 15px 0px 0px;
}

last-of-type is your tag row, which you've removed, so this has no effect. Replace it with
.table_header:nth-of-type(5) {
border-radius: 0px 15px 0px 0px;
}
Mar 25, 2015 4:50 AM

Offline
Dec 2013
37
Hi! How do you change the colour of the words "Airing"?
Mar 25, 2015 6:37 AM

Offline
Aug 2014
432
x3switlolli said:
Hi! How do you change the colour of the words "Airing"?

.animetitle+small{
color:magenta;
}
Mar 25, 2015 6:41 AM

Offline
Dec 2013
37
Satiriques said:
x3switlolli said:
Hi! How do you change the colour of the words "Airing"?

.animetitle+small{
color:magenta;
}

Thank you!! :)
Mar 25, 2015 12:05 PM
Offline
Jul 2012
36
I want to have a random banner each time I refresh my list. I'm certain there was a tutorial about it somewhere, but I can't seem to find it...
Mar 25, 2015 12:15 PM

Offline
Nov 2011
304
@Twin_Moons
You can use my random CSS script
Mar 26, 2015 7:45 AM

Offline
Feb 2010
1282
VeriTi said:
@Akai_Shuichi
The problem is with this selector:
.table_header:last-of-type {
border-radius: 0px 15px 0px 0px;
}

last-of-type is your tag row, which you've removed, so this has no effect. Replace it with
.table_header:nth-of-type(5) {
border-radius: 0px 15px 0px 0px;
}


Thanks!

People need societies, but they don't necessarily need nations. - Yang Wen-li
Mar 27, 2015 3:01 PM

Offline
Dec 2013
421
Hi I would like some help.

I bought this:
The Megami Magazine Special Edition (Highschool DxD)


And it comes with a lot of ecchi pictures.

So I was trying to scan them so I could use them in my about me section and make renders out of them.

The problem is that the scans looks really bad. I don't know if it's because the material it's kinda glossy or bright. But it looks bad when you zoom it. Also the colors are lighter.

Here:


So would anyone give me some tips to make it look better?

This is how it's supposed to be the image:


I haven't been able to find all the images I want so I want to scan them but need your help please.

Also I'll share the pics once I get to scan them properly.
Mar 28, 2015 12:19 PM

Offline
Mar 2008
3105
Hello, I'm too dumb so I need some help ;_;
I want the same cover previewer that Rin-ichihara has.
I took a look at her code but for the love of christ, I can't find it..
of course I would change a few things :)

(the ones that are currently in the club all look different and one has some kind of effect when you hover over the title ;w;)
Mar 28, 2015 12:32 PM

Offline
Feb 2010
12661
Angel said:
Hello, I'm too dumb so I need some help ;_;
I want the same cover previewer that Rin-ichihara has...
(the ones that are currently in the club all look different and one has some kind of effect when you hover over the title ;w;)


? Its not a new cover preview style, its the same as in this topic but she made some color and extra changes:
http://myanimelist.net/forum/?topicid=563993

Anyways I ripped the parts from her code which she adjusted from that topic:

span[id*="tagRow"] {
background-color: #FFFFFF !important;
border: 2px solid #a1ed3d;
border-radius: 0 0 10px 10px;
display: block !important;
line-height: 15px !important;
padding: 20px 8px 8px;
position: fixed;
right: 970px;
text-shadow: 0 0 0 #000000 !important;
top: 493px;
visibility: hidden;
width: 199px;
}
tr:hover span[id*="tagRow"] {
color: #7F7E7E !important;
visibility: visible;
}
:hover + .hide {
background-color: #a1ed3d;
background-position: 50% 50% !important;
background-repeat: no-repeat !important;
background-size: auto auto !important;
border-color: #FFFFFF;
border-radius: 16px 16px 0 0;
border-style: solid;
border-width: 2px;
box-shadow: 0 2px 2px #000000;
display: block !important;
height: 250px;
padding: 39px 22px 9px 10px;
position: fixed;
right: 970px;
top: 210px;
width: 183px;
}
Shishio-kunMar 28, 2015 12:47 PM
Mar 28, 2015 12:46 PM

Offline
Mar 2008
3105
Shishio-kun said:
Angel said:
Hello, I'm too dumb so I need some help ;_;
I want the same cover previewer that Rin-ichihara has.
I took a look at her code but for the love of christ, I can't find it..
of course I would change a few things :)

(the ones that are currently in the club all look different and one has some kind of effect when you hover over the title ;w;)


? How exactly is it different from this:

Minus the preview text, which can be taken off with the topic?

wait I didn't even see that lol
from where is that?
MY BAD, forgive me ;_;

edit: aaah, you changed your reply! thank you so much:) I figured out something now, just need to adjust it a little
Vanessa-Mar 28, 2015 12:50 PM
Mar 28, 2015 12:50 PM

Offline
Feb 2010
12661
Angel said:
Shishio-kun said:


? How exactly is it different from this:

Minus the preview text, which can be taken off with the topic?

wait I didn't even see that lol
from where is that?
MY BAD, forgive me ;_;


It was with the other cover previews under list tutorials, which is linked via the first post which I asked to read in this topic's title. Anyways I edited my last post with the codes so you can just use those, you won't have to go thru the trouble of editing the colors like hers.
Mar 28, 2015 1:22 PM

Offline
Feb 2010
12661
edup_2004 said:
Hi I would like some help.

I bought this:
The Megami Magazine Special Edition (Highschool DxD)


And it comes with a lot of ecchi pictures.

So I was trying to scan them so I could use them in my about me section and make renders out of them.

The problem is that the scans looks really bad. I don't know if it's because the material it's kinda glossy or bright. But it looks bad when you zoom it. Also the colors are lighter.

Here:


So would anyone give me some tips to make it look better?

This is how it's supposed to be the image:


I haven't been able to find all the images I want so I want to scan them but need your help please.

Also I'll share the pics once I get to scan them properly.


Whoa cool mag. Isn't lighting the problem? Maybe play around with that. If I was in your position I would try to find someone with experience scanning. Not a manga scanner, but an artsy one who cares about final quality like you, best bet imo is on Minitokyo forums:
http://www.minitokyo.net/
Not sure where you'd find that on MAL, maybe Creative Corner (MAL forum).

btw I think a lot of quality scans too are touched up after scanning with Photoshop later to improve the look, taking out artifacts and improving the lighting/color and such. SweetMonia's PS tutorials or Photoshop actions might be able to do that (I have no idea for sure tho). The Minitokyo ppl might know
Mar 28, 2015 7:00 PM
Offline
Jul 2014
4
Okay, my list is near perfect now. Would anyone be kind enough to help me finish it? The alignment of certain things on my list is slightly off-place in Firefox compared to Chrome. For example, my "Sort List" drop down menu isn't aligned properly in Firefox, but it is in Chrome. The same goes for the copyright in the corner. I don't understand. The same code applies right?

My Anime List: http://myanimelist.net/animelist/jakeranson

My Code:
Mar 29, 2015 5:37 AM

Offline
Mar 2008
3105
Ok, another problem (I did manage to fix another one myself xD).
I want to add a picture to a certain anime in the tag section (only a small one), how do I do it?
I did take a look at this, but it only explains how to change it for the anime titles... I don't get what's the right selector for the tag section ._.

To make it (hopefully) easier to understand what I mean:
Vanessa-Mar 29, 2015 12:31 PM
Reply Disabled for Non-Club Members
Pages (159) « First ... « 53 54 [55] 56 57 » ... 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