Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (159) « First ... « 17 18 [19] 20 21 » ... Last »
Apr 27, 2013 11:56 AM
Offline
Nov 2012
2199
Shishio-kun said:
DragniMDragnivat said:
Thank you very much ^^ I copied them,and now my layout is completed :)
Oh...and just to ask...how can i make a profile layout,whit a window for a you tube video :/


You have to put an empty space into your profile graphic that can fit a Youtube player. They are 425px across and 355px high. Then you put the BBcode for the player in the space on your layout and it fits in like a image would.

You can see an example in the layout I fixed here:
http://myanimelist.net/forum/?topicid=393393&show=20#msg18976260

OK,I see,thank you for explaining ^^
Apr 27, 2013 2:33 PM

Offline
Apr 2012
753
Shishio-kun: No question, but I sure like how you explain things for modifying my list. I wanted to narrow it and move it left and the explantions were so easy that it took about a minute to do. A Big Thank You!
Apr 27, 2013 3:42 PM

Online
Feb 2010
12784
Furykury1 said:
Shishio-kun: No question, but I sure like how you explain things for modifying my list. I wanted to narrow it and move it left and the explantions were so easy that it took about a minute to do. A Big Thank You!


Yup and ty! I always put myself in the mind of someone who has no experience or little knowledge of CSS/BBcode and explain it how I would like to hear it with that state of mind. Nothing annoys me more than bad tutorials online that expect you to know all their terminology!
Apr 28, 2013 2:10 AM
Offline
Jun 2011
8
Hi Shishio. I'm a new member to the club. I have a question regarding one of the requested layers. I'm currently using the Kino no Tabi layer for my manga list, but I think i was meant for the anime list because of some of the text ,e.g., currently watching and plan to watch. And I also believe that's why the covers of the manga isn't showing up when you hover over the image box? I was wondering if you can changed it so it works for the manga list? Please and Thank you. I apologize if this question has been answered (couldn't find the solution to this in the FAQs) or if my question is confusing. I'm not familiar with CSS stuff but your beginner's instructions were very easy to understand.
Apr 29, 2013 2:09 PM

Offline
Dec 2012
147
Umm,

I just want to know if it's possibile to have the same function on myanimelist, as the following site has in the bottom-right corner:

http://gallery.minitokyo.net/download/562109


Apr 29, 2013 5:34 PM

Offline
Oct 2012
249
Hawalone said:
Hi Shishio. I'm a new member to the club. I have a question regarding one of the requested layers. I'm currently using the Kino no Tabi layer for my manga list, but I think i was meant for the anime list because of some of the text ,e.g., currently watching and plan to watch. And I also believe that's why the covers of the manga isn't showing up when you hover over the image box? I was wondering if you can changed it so it works for the manga list? Please and Thank you. I apologize if this question has been answered (couldn't find the solution to this in the FAQs) or if my question is confusing. I'm not familiar with CSS stuff but your beginner's instructions were very easy to understand.

I changed the category buttons, forgot last time sorry :P Also I just put some random manga on my list so this is the actual tested version!

May 3, 2013 11:40 PM

Offline
Nov 2012
272
My Question: How do you make gifs from pictures and add the borders or another still picture? and how can I make it so that my layout also includes the gif?

In case my question didn't make sense, these are the kind of things I'm referring to.
May 4, 2013 12:41 AM

Offline
Jan 2012
1578
Lyyzee said:
My Question: How do you make gifs from pictures and add the borders or another still picture? and how can I make it so that my layout also includes the gif?

Go to
http://cropper.codeplex.com/
and download Crooper

Then go to
http://cropperplugins.codeplex.com/
and download Crooper plugins

After you downloaded plugins, unpack them from archive and move to
Cropper install directory\plugins


Output format
1. Launch the app
2. Right-click on the app icon at the system tray menu
3. Choose Output -> Animated Gif

Customize output settings
1. Do 1. and 2. steps from Output format
2. Choose Options
3. Select Plug-ins tab
4. Click Select Plug-in pop-up list and choose Animated Gif
5. Frame interval - frames per second, less interval - more smooth animation, larger size

Record your gifs
1. Launch video player app and start video you wanted make gif from
2. Launch Crooper and adjust blue frame border size to the player window size
3. Double-click or Enter on the Crooper blue frame to start/stop recording

P. S. if you want edit recorded gif, open it in Gimp, for example
HahaidoMay 4, 2013 12:48 AM
May 4, 2013 1:59 AM

Offline
Apr 2013
138
Hello. I'm a new member in MAL and in this club.
My question refers to this topic : http://myanimelist.net/forum/?topicid=453755

Whenever I hover over an anime with a long title name, the title name covers part of the image that appears. How can I make it so that the title does not block the image?
REALITY IS A CRAPPY GAME


May 4, 2013 5:17 AM

Offline
Jan 2012
1578
BlackMalice said:
Hello. I'm a new member in MAL and in this club.
My question refers to this topic : http://myanimelist.net/forum/?topicid=453755

Whenever I hover over an anime with a long title name, the title name covers part of the image that appears. How can I make it so that the title does not block the image?

Delete from the top of your CSS:

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


Add to the top of your CSS:

@import "http://dl.dropbox.com/u/78192465/MyAnimeList/Kore%20wa%20Zombie%20Desuka/Covers.css";


Add to your CSS:

.animetitle {
display: inline-block;
max-width: 550px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}


Also you need a Dropbox account or other to host scpecific CSS:

#list_surround table:nth-of-type(n+4) tbody:hover .animetitle:after {
position: absolute !important;
display: block !important;
content: '';
width: 200px !important;
height: 284px !important;
margin-left: 570px !important;
margin-top: -310px !important;
background-repeat: no-repeat !important;
background-size: 105% 105%;
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
May 4, 2013 5:36 AM

Offline
Apr 2013
138
Hahaido said:

Also you need a Dropbox account or other to host scpecific CSS:

#list_surround table:nth-of-type(n+4) tbody:hover .animetitle:after {
position: absolute !important;
display: block !important;
content: '';
width: 200px !important;
height: 284px !important;
margin-left: 570px !important;
margin-top: -310px !important;
background-repeat: no-repeat !important;
background-size: 105% 105%;
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}


After doing this, am I supposed to use @import?
REALITY IS A CRAPPY GAME


May 4, 2013 5:50 AM

Offline
Jan 2012
1578
Yes, use @import and put it to the top of your code
May 4, 2013 5:59 AM

Offline
Apr 2013
138
Could you like check my anime list and confirm if that was what you intended to do. Please and many thanks so far.
REALITY IS A CRAPPY GAME


May 4, 2013 6:09 AM

Offline
Jan 2012
1578
Now it looks fine!
May 4, 2013 6:12 AM

Offline
Apr 2013
138
Haha. Alright. Thanks a lot. You're awesome. :)
REALITY IS A CRAPPY GAME


May 4, 2013 5:09 PM

Offline
Feb 2013
1171
Hi I'm requiring help with centering the category links in my anime list.

This is what it currently looks like


I've tried using text-align: center; in various places but with no luck.
I can change the font via this below so i thought it should go there but that also had no effect on the text.

.status_selected a, .status_not_selected a {
font-family: times new roman;
}

If you can help me with this problem i would be grateful
May 4, 2013 5:21 PM

Offline
Nov 2012
272
Hahaido said:
Lyyzee said:
My Question: How do you make gifs from pictures and add the borders or another still picture? and how can I make it so that my layout also includes the gif?

Go to
http://cropper.codeplex.com/
and download Crooper

Then go to
http://cropperplugins.codeplex.com/
and download Crooper plugins

After you downloaded plugins, unpack them from archive and move to
Cropper install directoryplugins


Output format
1. Launch the app
2. Right-click on the app icon at the system tray menu
3. Choose Output -> Animated Gif

Customize output settings
1. Do 1. and 2. steps from Output format
2. Choose Options
3. Select Plug-ins tab
4. Click Select Plug-in pop-up list and choose Animated Gif
5. Frame interval - frames per second, less interval - more smooth animation, larger size

Record your gifs
1. Launch video player app and start video you wanted make gif from
2. Launch Crooper and adjust blue frame border size to the player window size
3. Double-click or Enter on the Crooper blue frame to start/stop recording

P. S. if you want edit recorded gif, open it in Gimp, for example


Thank You VERY Much =] ! ~
May 4, 2013 9:16 PM

Offline
Jan 2012
1578
braderzright said:
Hi I'm requiring help with centering the category links in my anime list.

You need to define links width and text will be aligned within:

.status_not_selected a, .status_selected a {
width: 180px;
text-align: center;
}
May 5, 2013 8:34 AM

Offline
Feb 2013
1171
Wow, i feel really stupid.

Thanks for the help Hahaido
May 7, 2013 1:05 PM

Offline
Feb 2013
1171
just a quick question, how do i rename category links because i'm trying to change the "current watching" link to just "watching"
May 7, 2013 9:13 PM

Offline
Jan 2012
1578
braderzright said:
just a quick question, how do i rename category links because i'm trying to change the "current watching" link to just "watching"

We have relative topic:
http://myanimelist.net/forum/?topicid=314657

Also you may check:
http://myanimelist.net/forum/?topicid=443937&show=60#msg21760815
May 7, 2013 11:25 PM
Offline
Apr 2013
30
hello im having a problem when creating box on background
i see this tutorial and i want t know how to do this kind of box that still can see the background picture

The tutorial 0:56 of video
May 8, 2013 2:00 AM

Offline
Feb 2013
1171
i checked out your links and found this:


however i have no idea what to do with it,
When i add it in i does nothing nor when i change the values
May 8, 2013 3:44 AM

Offline
Jan 2012
1578
Try this:
May 8, 2013 1:53 PM

Offline
Feb 2013
1171
Ok wasn't expecting that but at least i see what i was doing wrong with the script.
Thanks for the help again.
May 8, 2013 8:38 PM

Offline
Nov 2010
26413
Forgetfulness said:
Is it possible to put a music file into the "About me" section of your profile?

I know you could just put a Youtube vid, but if there's a way to just put a player or something, that would be preferred.
No it's not possible. A youtube video is the only way.
May 9, 2013 3:03 PM

Offline
Oct 2012
249
Forgetfulness said:
Is it possible to make the image links anything besides rectangles or squares? On my About me, I put some characters in circles and I was wondering if there was any way to put links on those pictures


You need to cut the images up so each picture is its own image. It is a long and tedius process but if you want clickable stuff thats what you gotta do. Watch this video and it should help explain it better :)
http://www.youtube.com/watch?feature=player_embedded&v=rBR9t6AKyCE
May 10, 2013 1:07 PM
Offline
Nov 2011
1
Hey,
Is it possible to change the text insert box background color?

[url]http://i.imgur.com/zFZroLK.jpg[/url]

(sorry, it sounds pretty confused but i dont know how it's called)

Thanks.
May 10, 2013 8:51 PM

Offline
Oct 2012
249
Forgetfulness said:


Yes, I'm aware of that. I was asking if it was possible to make image links circles and stuff and still fit into a background image.

Like see how in the video, he cuts out a rectangle even though the button is in the shape of a hexagon?


No, they need to be rectangles/squares, but honestly it doesn't make too much of a difference if a little outside of the shape is clickable.
May 12, 2013 11:47 AM

Offline
Oct 2012
78
And then the same question, how do I remove information about anime and leave only the video?
May 12, 2013 1:06 PM

Offline
Dec 2012
5
Hey,
I've been experiencing problems with the "More" button on my anime list..
I have the thing in my anime list where you can mouseover the anime title and the box gets bigger and shows the preview/picture.
But the same thing is happening when I click on the More section of it.. it gets bigger and the text gets all spread out!! How do I make the box not get bigger or the text spread out in that?

Plus the preview picture keeps repeating in the More section.. and I don't want it to do that.. how do I get rid of the picture from there?

I'm trying to add videos in the comments section, which I have done. But now it looks really bad because the section is all spread out.. ;_;
Here, I'll paste my CSS File.


Sorry if I explained my problem kind of weird, but you can even see for yourself if you go to my list.. :\
Please reply soon, and thanks.
May 13, 2013 4:53 AM

Offline
Oct 2012
78
CupboardDinosaur said:
Hey,
I've been experiencing problems with the "More" button on my anime list..
I have the thing in my anime list where you can mouseover the anime title and the box gets bigger and shows the preview/picture.
But the same thing is happening when I click on the More section of it.. it gets bigger and the text gets all spread out!! How do I make the box not get bigger or the text spread out in that?

Plus the preview picture keeps repeating in the More section.. and I don't want it to do that.. how do I get rid of the picture from there?

I'm trying to add videos in the comments section, which I have done. But now it looks really bad because the section is all spread out.. ;_;
Here, I'll paste my CSS File.


Sorry if I explained my problem kind of weird, but you can even see for yourself if you go to my list.. :
Please reply soon, and thanks.


I'll be the captain and I say that to blame the posters anime, if you remove them, section "More" will not lengthen.

sry for my english google translate/russia-english =))
May 13, 2013 10:56 AM

Offline
Feb 2013
20
Can anyone tell me why the header doesn't show up in this layout

https://www.dropbox.com/s/yro8re0vsab472z/New%20Text%20Document.txt
May 13, 2013 3:16 PM

Offline
Dec 2012
147
iVoid said:
And then the same question, how do I remove information about anime and leave only the video?


Add this to the end of your CSS code:


just to let you know I added into my own CSS code (on my list), a code that shows videos of the same size as the list's table is:


May 13, 2013 3:22 PM

Offline
Dec 2012
147
PinkSheep said:
Can anyone tell me why the header doesn't show up in this layout

https://www.dropbox.com/s/yro8re0vsab472z/New%20Text%20Document.txt


Add this at the bottom of your CSS:


May 13, 2013 3:33 PM

Offline
Dec 2012
147
iVoid said:
CupboardDinosaur said:
Hey,
I've been experiencing problems with the "More" button on my anime list..
I have the thing in my anime list where you can mouseover the anime title and the box gets bigger and shows the preview/picture.
But the same thing is happening when I click on the More section of it.. it gets bigger and the text gets all spread out!! How do I make the box not get bigger or the text spread out in that?

Plus the preview picture keeps repeating in the More section.. and I don't want it to do that.. how do I get rid of the picture from there?

I'm trying to add videos in the comments section, which I have done. But now it looks really bad because the section is all spread out.. ;_;
Here, I'll paste my CSS File.


Sorry if I explained my problem kind of weird, but you can even see for yourself if you go to my list.. :
Please reply soon, and thanks.


I'll be the captain and I say that to blame the posters anime, if you remove them, section "More" will not lengthen.

sry for my english google translate/russia-english =))


your english is not just good, but very good (understandable) !!!

About the posters / covers :

Then she will not have covers any more, although her lines would still stretch out, so your answer is not good enough...

_ _ _ _

sorry @CupboardDinosaur but I hate to tell you, that your way of showing covers is affecting "More" function as well, so no solution as far as I know...
MonsterguyMay 14, 2013 1:26 PM


May 13, 2013 6:32 PM

Offline
Dec 2012
5
Monsterguy said:
iVoid said:
CupboardDinosaur said:
Hey,
I've been experiencing problems with the "More" button on my anime list..
I have the thing in my anime list where you can mouseover the anime title and the box gets bigger and shows the preview/picture.
But the same thing is happening when I click on the More section of it.. it gets bigger and the text gets all spread out!! How do I make the box not get bigger or the text spread out in that?

Plus the preview picture keeps repeating in the More section.. and I don't want it to do that.. how do I get rid of the picture from there?

I'm trying to add videos in the comments section, which I have done. But now it looks really bad because the section is all spread out.. ;_;
Here, I'll paste my CSS File.


Sorry if I explained my problem kind of weird, but you can even see for yourself if you go to my list.. :
Please reply soon, and thanks.


I'll be the captain and I say that to blame the posters anime, if you remove them, section "More" will not lengthen.

sry for my english google translate/russia-english =))


your english is not just fine, but very good (understandable) !!!

About the posters / covers :

Then she will not have covers any more, although her lines would still stretch out, so your answer is not good enough...

_ _ _ _

sorry @CupboardDinosaur but I hate to tell you, that your way of showing covers is affecting "More" function as well, so no solution as far as I know...


Thanks, I will try to find another way to show the covers.
I didn't know that the covers would affect More too lol
May 13, 2013 8:37 PM
Trickster

Offline
Jun 2011
2275
I have a few problems with my list. First I'm trying to make my background not repeat, second I'm trying to move it up a little bit, and third, I'm trying to get rid of the borders on my #'s column. Nothing I do is working. Can someone please help me out?

Here's my CSS code:
May 13, 2013 9:55 PM

Offline
Jan 2012
1578
Todd_Jensen said:
I have a few problems with my list.

Your edited CSS:
May 13, 2013 11:25 PM
Trickster

Offline
Jun 2011
2275
Hahaido said:
Todd_Jensen said:
I have a few problems with my list.

Your edited CSS:


Thank you so much, you saved me a lot of stress.
May 14, 2013 12:41 AM

Offline
Oct 2012
78
Monsterguy said:
iVoid said:
And then the same question, how do I remove information about anime and leave only the video?


Add this to the end of your CSS code:


just to let you know I added into my own CSS code (on my list), a code that shows videos of the same size as the list's table is:


ty! =)
May 14, 2013 7:28 AM

Offline
Jan 2011
124
ok so I tried to change the category link Plan to Watch to Gonna watch but it only shows up proper on the All Anime page and awkwardly on the currently watching page, does anyone know what I'm doing wrong?

here's my css
May 14, 2013 9:33 AM

Offline
Feb 2013
20
Monsterguy said:

Add this at the bottom of your CSS:

Thank you
Can anyone tell me how to make the gap less big at the top?.3.

https://www.dropbox.com/s/173vf8g6amoigo5/listt.txt
May 14, 2013 9:08 PM

Offline
Jan 2012
1578
clone4 said:
ok so I tried to change the category link Plan to Watch to Gonna watch but it only shows up proper on the All Anime page and awkwardly on the currently watching page, does anyone know what I'm doing wrong?

http://myanimelist.net/forum/?topicid=443937&show=60#msg21760815
hmmm... did you read this? If so, then what is this:

.status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a,
.status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected a,
.status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected a,
.status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected a,
.status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected a,
.status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected a:before{
content: "Gonna Watch";
font-size: 30px !important;}
?
May 15, 2013 3:56 AM
Offline
Jul 2012
9027
In my manga list, why does my pics are incorrect. Can someone help me how to get a right pic?
May 15, 2013 4:18 AM

Offline
Jan 2012
1578
GoldenBRS said:
In my manga list, why does my pics are incorrect. Can someone help me how to get a right pic?

In your CSS the 1-st line of the code says me that you're try to use anime covers for your manga list. So replace anime.css with manga.css:
May 15, 2013 4:44 AM
Offline
Jul 2012
9027
Hahaido said:
GoldenBRS said:
In my manga list, why does my pics are incorrect. Can someone help me how to get a right pic?

In your CSS the 1-st line of the code says me that you're try to use anime covers for your manga list. So replace anime.css with manga.css:

Thank you so much! It works. You are my life saver.
Reply Disabled for Non-Club Members
Pages (159) « First ... « 17 18 [19] 20 21 » ... 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

386 by Shishio-kun »»
8 hours ago

Sticky: » [ BBCODE ] All 2023 BBcodes, Guides, and Templates ( 1 2 )

Shishio-kun - Feb 16, 2023

64 by NightmareTala »»
Oct 5, 1:08 PM

Sticky: » [ SIGNATURES ~ PROFILES] All guides, generators, and templates

Shishio-kun - Feb 16, 2023

35 by iluvmozu »»
Oct 4, 11:41 PM

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

Valerio_Lyndon - Apr 19, 2018

1262 by Shishio-kun »»
Sep 22, 4:35 AM

» theme help

threat - Jul 5

5 by Zaryf »»
Aug 21, 5:46 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login