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 ><
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
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
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.
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 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?
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:
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:
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 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'.
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:
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 ..
<?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
?>
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 ..
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
/*
Square Layout
Anime Custom Style 2015
*/
/* 1) Generated covers */
@import url(https://dl.dropboxusercontent.com/s/lc3qu9mmlkej4gn/MyListAnime.css);
/* 2) Base layout */
@import url(https://dl.dropbox.com/s/8fbv09q6uokiucb/Layout%20-%20Anime.css);
/* 3) Top-bar icons */
@import url(https://dl.dropbox.com/s/3qc5aqxfymsw7f6/Top%20Bar%20Icons.css);
/* 4) Layout theme */
@import url(https://dl.dropbox.com/s/tywwxs102darx7t/White%20Theme.css);
/* COLOR OF LIST*/
#list_surround{
background-color: rgba(52, 52, 52, .3) !important;}
#inlineContent {
border-bottom-color: transparent !important;
}
/* 5) Addons - Add as many as you want */
@import url(https://dl.dropbox.com/s/ty1y1z092czydle/Long%20Covers.css);
/* 6) Options */
/* Determines the number of covers on each row, it should be a multiple of 242px */
#mal_control_strip, #list_surround {max-width: 1452px;}
/* Header picture */
#inlineContent {background-image: url();}
.header_title{padding:1px;}
/* Default picture when no cover is found */
{background-image: url(http://www.stupendousmarriage.com/wp-content/uploads/2010/01/4088773900_0b38816a7d_m.jpg);}
/* Links color */
a {color: rgb(180, 255, 0);}
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
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.
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
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
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)?
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 ?
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 ?
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
Use the fix in the OP to make the layout load correctly again
[center][b]Fixing layout loading problems and broken cover CSS[/b]
Update! Recently is your list layout loading slow or not at all? Here is the solution for many users- thanks Kiokuzoku for this tip! Click the spoiler. Will also fix broken covers for Fellow Writer users.
1. Go to your CSS and find the lines of code that start with @import. These are imports.
2. If the import has dropbox.com in it, change the http before dropbox to https
Changing all the dropbox imports this way should help the layout load normally again. If you're using the Square layout, you may have several imports to correct. To fix Fellow Writer imports fix the second http in the line.
You can visit these topics to see examples of fixes in the opening posts: Square layout Fellow Writer
As an extra tip, you should delete any import lines that contain http://dl.dropbox.com/u/78340470
These are dead links and should be removed from the top of CSS as they sometimes slow layouts down too. Only remove imports with that exact number in them.
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
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?
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.
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