Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (7) « First ... « 5 6 [7]
Apr 5, 2015 2:56 AM

Offline
Dec 2014
7
hi umm i have a question, i've gotten a replacement cover for the animes that have no cover link in the css given above, but only certain titles that have no cover links show this replacement cover, while several others are just black. also, whenever i mouse over any anime, an image of fire is like superimposed on the cover image, and the fire wasnt there before i moused over the anime. this happens for all of them. im using the fire theme so could there be any relation? sorry im bad at this ><
Apr 5, 2015 10:58 AM

Offline
Feb 2010
11294
tjzzz said:
hi umm i have a question, i've gotten a replacement cover for the animes that have no cover link in the css given above, but only certain titles that have no cover links show this replacement cover, while several others are just black. also, whenever i mouse over any anime, an image of fire is like superimposed on the cover image, and the fire wasnt there before i moused over the anime. this happens for all of them. im using the fire theme so could there be any relation? sorry im bad at this ><


The cover CSS you're using is missing covers, try another import or use Fellow Writer, Blink, Genku to generate your own (linked in topic) . The layout author made Fellow Writer so you might be interested in that
http://myanimelist.net/forum/?topicid=443333&show=0#post1

Fire theme prob has fire effect as an addition yeah
Apr 23, 2015 6:01 AM

Offline
Oct 2013
4340
Shishio-kun said:
tjzzz said:
hi umm i have a question, i've gotten a replacement cover for the animes that have no cover link in the css given above, but only certain titles that have no cover links show this replacement cover, while several others are just black. also, whenever i mouse over any anime, an image of fire is like superimposed on the cover image, and the fire wasnt there before i moused over the anime. this happens for all of them. im using the fire theme so could there be any relation? sorry im bad at this ><


The cover CSS you're using is missing covers, try another import or use Fellow Writer, Blink, Genku to generate your own (linked in topic) . The layout author made Fellow Writer so you might be interested in that
http://myanimelist.net/forum/?topicid=443333&show=0#post1

Fire theme prob has fire effect as an addition yeah


Blink is just awesome!
My Manga List
My Anime List
Shabada shabadabadaba
I am DjG545 aka Dj Fo Fo aka The Mutha Fkn Name I'm Usin Now
Apr 23, 2015 1:53 PM

Offline
Feb 2010
11294
daAmazinFatB0y said:
Can someone help me with something?

I got a black bar going through my list. I was messing with the css for th dark theme and the black bar where the header is supposed to be won't go away no matter what I do lol

I got rid of it before but I'm not sure on what I just did to bring it back.

Can you help?

Heres the CSS for the Dark Theme



And heres a link to my list
http://myanimelist.net/animelist/daAmazinFatB0y

Thanks.


I used

#inlineContent {
border-bottom-color: transparent !important;
}

with your CSS and it took the bar away
Apr 30, 2015 6:33 AM

Offline
Aug 2012
2023
Hi Shishio-kun....

I need a favour, please. Is it possible to incorporate a code that will randomly select banner images on each refresh?
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
Apr 30, 2015 2:38 PM

Offline
Feb 2010
11294
Marhuto said:
Hi Shishio-kun....

I need a favour, please. Is it possible to incorporate a code that will randomly select banner images on each refresh?


Yes see the random background tutorials first and if it doesn't make sense you can ask there. It should tho. They'll show you how to get random wallpaper, but the same technique can be applied to most banners images.
May 1, 2015 5:43 AM

Offline
Aug 2012
2023
Shishio-kun said:
Marhuto said:
Hi Shishio-kun....

I need a favour, please. Is it possible to incorporate a code that will randomly select banner images on each refresh?


Yes see the random background tutorials first and if it doesn't make sense you can ask there. It should tho. They'll show you how to get random wallpaper, but the same technique can be applied to most banners images.


I did look at the first. I saw an example for the banner. But can we include jquery or php in our css file?
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 5:47 AM

Offline
Apr 2009
159
You cannot include JQuery or PHP in a CSS file, but you can generate CSS content with PHP and then @import it in your CSS file. Just don't forget to change the header:
header('Content-type: text/css');
May 1, 2015 5:58 AM

Offline
Aug 2012
2023
u531355 said:
You cannot include JQuery or PHP in a CSS file, but you can generate CSS content with PHP and then @import it in your CSS file. Just don't forget to change the header:
header('Content-type: text/css');


Thanks

However, another problem.

https://css-tricks.com/snippets/php/randomize-background-image/

The webpage above shows how to do it, but the images are localized; mine are from imgur album. I would have to use the links, not the image name. Is that doable?
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 6:05 AM

Offline
Apr 2009
159
What's the difference between the link and the image name?
May 1, 2015 6:16 AM

Offline
Aug 2012
2023
I thought the $selectedBg = "$bg[$i]"; corresponded with bg-01.jpg.
Then I saw the word images here background: url(images/<?php echo $selectedBg; ?>) no-repeat; I know that refers to the directory.


I guess I'll use this
background: url(<?php $a = array(‘anyfile.jpg’,’anyotherfile.gif’, ‘somefile.png’); echo $a[array_rand($a)];?>);
and use the urls instead of 'anything.jpg'.
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 6:36 AM

Offline
Apr 2009
159
u531355 said:
You cannot include JQuery or PHP in a CSS file

You can't do that on MAL. <?php echo "whatever"; ?> won't work.
You need to @import a generated css, which means the echo must be in your php file.
But you cannot do something like this either:
body {
background-color: @import(http://www.site.com/randomselector.php);
}
because the @import needs to be on top of your css code.

What you need to do isand in your php file your array will contain the css code:
array('body{background-color: black;}', 'body{background-color: red;}' );


Fellow Writer does that:url is the url to a .txt or whatever file which looks like this:[/b]code1.css:
body{background-color: black;}
and code2.css:
body{background-color: red;}


Maybe something is possible with css variables, I never tried that: http://css3.bradshawenterprises.com/blog/css-variables/
u531355May 1, 2015 6:41 AM
May 1, 2015 6:49 AM

Offline
Aug 2012
2023
Thanks a lot for this. I'm testing now.
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 8:27 AM

Offline
Aug 2012
2023
u531355 said:
...

I think the main problem is the id #inlineContent.
It contains contents for the banner.
How do I incorporate that in the php?
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 8:48 AM

Offline
Apr 2009
159
I made an example for the "body" selector and the "background-color" attribute, but it's the same for the "#inlineContent" selector and the "background-image" attribute ..
May 1, 2015 9:28 AM

Offline
Aug 2012
2023
Here are the two ways that I tried, but to no avail:

PS. I know you said that MAL doesn't allow the echo, but being stubborn I tried it nonetheless xD :(


banners.php
<?php
header("Content-type: text/css; charset: UTF-8");

array('inlineContent{background-image: url(http://i.imgur.com/mmsTGFf.png);}', 'inlineContent{background-image: url(http://i.imgur.com/zLqJiwb.png);}' );
?>


Square Layout.css



and


banners.php
<?php
$banners = array('http://i.imgur.com/mmsTGFf.png', 'http://i.imgur.com/zLqJiwb.png'); // array of images

$i = rand(0, count($banners)-1); // generate random number size of the array
$selectedbanners = "$banners[$i]"; // set variable equal to which random image was selected
?>


Square Layout.css
#inlineContent {
background-image: url(<?php echo $selectedbanners; ?>);
background-position: right 11% !important;
background-size: cover;
z-index: -3 !important;
}

I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 9:33 AM

Offline
Apr 2009
159
In the first way you forgot the # for the selector. And why did you remove the rest of the code? The part selecting a random element of the array? And if you don't echo anything, you won't generate any css ..

<?php
header('Content-type: text/css');
$banners = array('#inlineContent{background-image:url(http://i.imgur.com/mmsTGFf.png);}', '#inlineContent{background-image:url(http://i.imgur.com/zLqJiwb.png);}');
echo $banners[array_rand($banners)];
?>

I didn't try this code but it should work.
May 1, 2015 10:11 AM

Offline
Aug 2012
2023
Nope, still not working...


banner.php
<?php
header("Content-type: text/css");
$banner = array('#inlineContent{background-image:url(http://i.imgur.com/mmsTGFf.png);}', '#inlineContent{background-image:url(http://i.imgur.com/zLqJiwb.png);}');
echo $banner[array_rand($banner)];
?>



with



I can't see a reason why it won't work - must be mal.
MarXHunterMay 1, 2015 10:17 AM
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 10:37 AM

Offline
Apr 2009
159
Dropbox hosts static files, not php files. Find a php server.
May 1, 2015 11:07 AM

Offline
Aug 2012
2023
I have wamp, but that means I would have to leave it running.

Is there no other way this could be accomplished? Javascript perhaps?
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 1, 2015 11:18 AM

Offline
Apr 2009
159
u531355 said:
Fellow Writer does that:url is the url to a .txt or whatever file which looks like this:[/b]code1.css:
body{background-color: black;}
and code2.css:
body{background-color: red;}



If you don't know anything about anything, please use an existing solution ...
May 1, 2015 11:29 AM

Offline
Aug 2012
2023
u531355 said:
u531355 said:
Fellow Writer does that:url is the url to a .txt or whatever file which looks like this:[/b]code1.css:
and code2.css:



If you don't know anything about anything, please use an existing solution ...


I saw that and because I was preoccupied, I overlooked it, and forgot to inquire about it.

It works. Thanks :)
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
May 13, 2015 11:46 AM

Offline
Oct 2013
4340
I'm back once again with 2 new problems lol Hopefully ya'll can help me out.

This is the most annoying one. The top bar.



^^^
Unless I'm viewing it in 1080p in fullscreen. It'll turn out like that. Or maybe its a issue with 16:9 resolution. I dunno. Would love to get this fixed.

Now for my other problem
.

I read somewhere that you can fix your list so your wallpaper and the list itself can fit perfectly on all resolutions or maybe someway for it to look good on phones.

Can you help me do that or at least direct me to wherever I read it? Its in some guide I think here. Dunno if was you or Shishio-kun who made or someone else.

Here's my CSS


Thanks.
My Manga List
My Anime List
Shabada shabadabadaba
I am DjG545 aka Dj Fo Fo aka The Mutha Fkn Name I'm Usin Now
May 13, 2015 2:14 PM

Offline
Feb 2010
11294
daAmazinFatB0y said:
I'm back once again with 2 new problems


I don't see the first problem and your dropbox is down atm so I can't investigate it but a code to control all those links at once with this layout seems to be

#list_surround > table:nth-child(6) {left: 0px;}

so try that. It needs to be imported, which it looks like you can do. There's probably other codes to try if that doesn't work


Adjusting something for each resolution is this topic:
http://myanimelist.net/forum/?topicid=524033
the reason for the color coding is to easily tell what resolution you're looking at during the adjustment period. Its smart to color code something on the layout differently for each resolution so you don't get confused while you're working on this- so many ppl remove the colors before trying to make adjustments then get confused and give up. When you're done you remove the colors

iirc there's also a way to import specific CSS to mobile devices only but I think its best to try the resolution method first
May 13, 2015 3:54 PM

Offline
Oct 2013
4340
Shishio-kun said:
daAmazinFatB0y said:
I'm back once again with 2 new problems


I don't see the first problem and your dropbox is down atm so I can't investigate it but a code to control all those links at once with this layout seems to be

#list_surround > table:nth-child(6) {left: 0px;}

so try that. It needs to be imported, which it looks like you can do. There's probably other codes to try if that doesn't work


Adjusting something for each resolution is this topic:
http://myanimelist.net/forum/?topicid=524033
the reason for the color coding is to easily tell what resolution you're looking at during the adjustment period. Its smart to color code something on the layout differently for each resolution so you don't get confused while you're working on this- so many ppl remove the colors before trying to make adjustments then get confused and give up. When you're done you remove the colors

iirc there's also a way to import specific CSS to mobile devices only but I think its best to try the resolution method first


Thanks I'll try those out and update you with the results. My dropbox is working fine btw.
My Manga List
My Anime List
Shabada shabadabadaba
I am DjG545 aka Dj Fo Fo aka The Mutha Fkn Name I'm Usin Now
Jun 18, 2015 12:28 PM
Offline
Aug 2011
1
Hello everyone,
is there any way for me to get the pictures out of the japan-bar in the sqaure layout.
I want to make a copy of my own and put it on dropbox.
If not, are there imgut links or something, so I wont need to import from someone elses dropbox.
inb4 Thx
Jul 14, 2015 2:16 PM
Offline
Jul 2018
564612
jiorugu said:
Hello everyone,
is there any way for me to get the pictures out of the japan-bar in the sqaure layout.
I want to make a copy of my own and put it on dropbox.
If not, are there imgut links or something, so I wont need to import from someone elses dropbox.
inb4 Thx


I'm using the Japan Top Bar myself. I zipped up the images in my dropbox, feel free to grab it and add the images to your own dropbox: https://dl.dropboxusercontent.com/u/176854663/MAL/JapanTopBar.zip
Sep 11, 2015 2:49 PM

Offline
Jun 2013
3
When i change font size here in css

body {
font-size: 14px;
font-family: 'Poiret One', cursive;
}



Its is looking like the picture

But when i increased the code



its lookin like this and my score aren't showing
how can i change both font size separately?

Thanks btw
Oct 2, 2015 12:56 PM
Offline
Mar 2014
1
Hm, I am sorry if this has been asked before, but is there a way to center and change the color of the text of each section (e.g: Watching, Completed, etc)?
Oct 5, 2015 3:51 PM
Offline
Aug 2013
1
I use this theme a long time and never had problems, now Some anime images does not appear, usually most of which are being launched, but also has Some who had images and then are gone, this is normal or and any error code ?

http://i.imgur.com/N33sQPk.png
Oct 5, 2015 7:15 PM

Offline
Aug 2012
2023
iAlexL said:
I use this theme a long time and never had problems, now Some anime images does not appear, usually most of which are being launched, but also has Some who had images and then are gone, this is normal or and any error code ?

http://i.imgur.com/N33sQPk.png


This is a typical problem.
You just have generate your own anime covers and use that .css file's dropbox public link in your skin.
You can generate your anime covers with Blink
http://myanimelist.net/forum/?topicid=1174347
I never go back on my words... that's my NINDO... MY NINJA WAY!!!
Visit my deviantART Gallery
Oct 23, 2015 5:54 PM
Offline
May 2012
19
Dear u531355;

dropbox links are not accessible.
Oct 24, 2015 11:22 PM

Offline
Feb 2010
11294
ounces said:
Dear u531355;

dropbox links are not accessible.


Use the fix in the OP to make the layout load correctly again



Shishio-kunOct 30, 2015 11:13 PM
Jan 8, 2016 5:03 AM
Offline
Apr 2015
3
Excuse me.. can I ask a question? XD :)

errr The picture for the anime is not reflecting and I was wondering if i did something wrong or something. Btw im new to MyAnimelist. TIA
Jan 8, 2016 7:32 AM

Offline
Apr 2009
159
Decim-sama said:
errr The picture for the anime is not reflecting and I was wondering if i did something wrong or something. Btw im new to MyAnimelist. TIA


Replace
with
u531355Jan 8, 2016 7:38 AM
Feb 23, 2016 6:13 AM
Offline
Jan 2015
41
Hi guys, me and one of my friends are using this layout, but when I got online a few minutes ago, I saw that the list was seriously bugged - there's only text on my list.
How can I fix this?
Feb 23, 2016 7:15 AM

Offline
Apr 2009
159
Dropbox said:
This account's links are generating too much traffic and have been temporarily disabled!

Wait for it to be back online and host the files elsewhere.
Feb 23, 2016 9:34 AM
Offline
May 2013
5
So since the update from myanimelist my list went from

Before Update

After Update

Anyone has a fix yet? :(
Feb 23, 2016 11:20 AM

Offline
Apr 2009
159
This has nothing to do with the update from MAL
u531355 said:
Dropbox said:
This account's links are generating too much traffic and have been temporarily disabled!

Wait for it to be back online and host the files elsewhere.
Feb 24, 2016 11:35 AM
Offline
Jan 2015
41
u531355 said:
This has nothing to do with the update from MAL
u531355 said:

Wait for it to be back online and host the files elsewhere.

How can we fix this then? Me and another friend is having this same problem..
Feb 24, 2016 11:44 AM

Offline
Apr 2009
159
As I said, the account is temporarily disabled, so you can't really fix it. You have to wait for the account to be reactivated.
Feb 26, 2016 11:32 PM

Offline
Oct 2012
45
AeilonAmv said:
So since the update from myanimelist my list went from

Before Update

After Update

Anyone has a fix yet? :(


Same here.
Feb 27, 2016 2:51 AM

Offline
Feb 2010
11294
@GonSama1:
@AeilonAmv:
@DLDrillNB:

So why aren't you all just using the alternative mirrors from the opening post? You should instantly get the layout back.
Feb 27, 2016 2:07 PM
Offline
Oct 2015
7
All we need is the CSS code files, and upload them in personnal dropbox accounts.
Does anybody have these files to share ?

PS: Oh sorry, as Shishio-kun said : You can find mirror links in the 1st page
MxscrrFeb 27, 2016 2:13 PM
Feb 27, 2016 2:22 PM

Offline
Feb 2010
11294
Mxscrr said:
All we need is the CSS code files, and upload them in personnal dropbox accounts.
Does anybody have these files to share ?

PS: Oh sorry, as Shishio-kun said : You can find mirror links in the 1st page


Yeah, but those mirrors are codes for your CSS edit box, not your Dropbox imports. They were made to stop the dropbox crashing problem entirely and also more accessibility. However it would be nice to have a source for dropbox purposes tho since many ppl like the simplicity of the OP code.
Mar 27, 2016 8:18 AM

Offline
Jun 2013
3
1 month later but the import codes are still dead
Jun 5, 2016 10:25 AM

Offline
Mar 2015
32
Hi!

Sorry if the question have already been posted, but wich code sould I had to my CSS to have rectangular anime/manga cover? :/

If my explainings arent't clear, that's what I am meaning:

Change this: http://image.noelshack.com/fichiers/2016/22/1465147469-css1.png

For this: http://image.noelshack.com/fichiers/2016/22/1465147469-css2.png


Thank you for your answers! :)
EmiBleJun 5, 2016 10:29 AM
Jun 5, 2016 11:46 AM

Offline
Jun 2013
3
Shishio-kun i have a question
i edited the styles css but i need top bar, theme,and long cover addon
i edited style css on my own and if i use the mirrors my edits are reverting
and i dont know which ones are the codes can you help me ?
its look like this
Aug 30, 2016 1:35 PM
Offline
Dec 2011
241
Hello shishio kun, i have some problem with the covers, they don't appear for me i don't know why. can you please help me?

https://myanimelist.net/animelist/kazurengan
Reply Disabled for Non-Club Members
Pages (7) « First ... « 5 6 [7]

More topics from this board

» ❓ Ask for help here + See Frequently Asked Questions ( 1 2 3 4 5 ... Last Page )

Shishio-kun - Apr 15, 2010

7812 by mtsRhea »»
Apr 21, 5:25 AM

» [CSS- MODERN] ⭐ Minimal Dashboard layout by 5cm ~ Compact and convenient! ( 1 2 3 )

Shishio-kun - Sep 4, 2020

121 by Pokitaru »»
Apr 21, 3:25 AM

» [CSS-MODERN] Change list text/font colors on any list layout

Shishio-kun - May 4, 2021

3 by hideso »»
Apr 20, 4:33 PM

» [CSS] [VIDEO GUIDE] ⭐️ How to change fonts on a list layout

Shishio-kun - Jul 15, 2019

17 by hideso »»
Apr 20, 4:03 PM

» [CSS][Modern] ☀️ Endless Summer Layout by Cateinya ( 1 2 3 4 5 ... Last Page )

Cateinya - Aug 18, 2016

309 by hideso »»
Apr 20, 3:56 PM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login