Forum Settings
Forums
New
Reply Disabled for Non-Club Members
Pages (157) « First ... « 44 45 [46] 47 48 » ... Last »
Sep 30, 2014 10:22 AM

Offline
Jun 2012
406
That's the one I tried, but it didn't work. I tried it again now, and it works. I think I may have copied it incorrectly the first time so that's why it didn't show other top bar, just removed the previous one... Probably stupid mistake on my part.

Thanks for your help.
Oct 2, 2014 5:08 PM

Offline
Aug 2014
117
I have a quick question if someone can help me out that would be AMAZING

so pretty much what i wanted to know is

is it possible to "Disable" a certain area of code? like if i was to add this

/*
Banner Area
*/

#list_surround {
background-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_totals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

But i wanted to like "Disable it" With it still being in the code but not showing in the actual visual thing? and i want you to be able to "Enable it" really easy if possible

But i dunno if there is a way to do it besides with "/*" but i don't really want to use those XD
ZmBiUnicornOct 2, 2014 9:49 PM
Oct 2, 2014 9:52 PM

Offline
Feb 2010
11294
ZmBzRALIVE said:
I have a quick question if someone can help me out that would be AMAZING

so pretty much what i wanted to know is

is it possible to "Disable" a certain area of code? like if i was to add this

/*
Banner Area
*/

#list_surround {
background-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_totals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

But i wanted to like "Disable it" With it still being in the code but not showing in the actual visual thing? and i want you to be able to "Enable it" really easy if possible

But i dunno if there is a way to do it besides with "/*" but i don't really want to use those XD


Put an X in the selector- this nullifies the selector- ppl remove the X to activate the selector.
Oct 2, 2014 10:11 PM

Offline
Aug 2014
117
Shishio-kun said:
ZmBzRALIVE said:
I have a quick question if someone can help me out that would be AMAZING

so pretty much what i wanted to know is

is it possible to "Disable" a certain area of code? like if i was to add this

/*
Banner Area
*/

#list_surround {
background-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_totals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

But i wanted to like "Disable it" With it still being in the code but not showing in the actual visual thing? and i want you to be able to "Enable it" really easy if possible

But i dunno if there is a way to do it besides with "/*" but i don't really want to use those XD


Put an X in the selector- this nullifies the selector- ppl remove the X to activate the selector.


In the Selector? I'm not quite sure what you mean :3
Oct 2, 2014 10:20 PM

Offline
Feb 2010
11294
ZmBzRALIVE said:
Shishio-kun said:


Put an X in the selector- this nullifies the selector- ppl remove the X to activate the selector.


In the Selector? I'm not quite sure what you mean :3


this is a selector:
body

so like this:
boXdy
Oct 2, 2014 10:38 PM

Offline
Aug 2014
117
Shishio-kun said:
ZmBzRALIVE said:


In the Selector? I'm not quite sure what you mean :3


this is a selector:
body

so like this:
boXdy


Ah i see!

So does this mean that i would have to add it in every single slot such as

/*
Banner Area
*/

#list_sXurround {
BACKGROUND-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_tXotals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

? Or only in the "First" Area?
Oct 2, 2014 10:54 PM

Offline
Feb 2010
11294
#list_sXurround {
BACKGROUND-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_tXotals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

? Or only in the "First" Area?



Every selector- every selector is separated by a comma so it "resets" and you have to do a new X. So:


.category_tXotals, .tXd1, .Xtd2, X#grand_totals, X#copyright

No need to put them in the property codes tho.

Since you're doing multi-selectors try to put an opening and closing comment bracket to turn off selectors, like:

#list_surround{
width: 50%;
}

/* .category_totals, .td1, .td2, #grand_totals, #copyright */ {
background: red;
}

body{
background: blue;
}


I just tested this, seems like a great solution for those multiple selector lines. And it doesn't seem to interfere with anything below or above.
Oct 2, 2014 11:00 PM

Offline
Aug 2014
117
Shishio-kun said:
#list_sXurround {
BACKGROUND-image: URL(http://i36.photobucket.com/albums/e27/ZmBzRALIVE/My%20Custom%20CSS/Welcome_zpsd492406c.png);
background-position: 0 0;
background-repeat: no-repeat;
padding-top: 242px;
}

.category_tXotals, .td1, .td2, #grand_totals, #copyright {
background: rgba(0, 0, 0, 0.8) !important;
)

? Or only in the "First" Area?



Every selector- every selector is separated by a comma so it "resets" and you have to do a new X. So:


.category_tXotals, .tXd1, .Xtd2, X#grand_totals, X#copyright

No need to put them in the property codes tho.

Since you're doing multi-selectors try to put an opening and closing comment bracket to turn off selectors, like:

#list_surround{
width: 50%;
}

/* .category_totals, .td1, .td2, #grand_totals, #copyright */ {
background: red;
}

body{
background: blue;
}


I just tested this, seems like a great solution for those multiple selector lines. And it doesn't seem to interfere with anything below or above.


Alright thanks c: Shishio-Kun! C: this was really helpful! :D i'll be using it in my new Beginner Template coding c;
Oct 2, 2014 11:14 PM

Offline
Feb 2013
455
Hello Shishio-kun,

I am using one of your custom lists, and it uses the top bar mod that changes the bar to the 'black-grey icon-styled top bar', or it should, but for some time now, it reverted back to the original bar, and I can't change between 'Watching' to 'Completed' and so on without typing &status=# on the url.

I have checked several of your guides, and I am pretty sure I didn't drastically change much, as the top bar reverted just one day, without me touching the css editor. There was about a week when it came back, but now it's back to the original.

Is it just my computer's problem? (I haven't checked on other pc's)

EDIT: I just checked on my iPhone, it's like that there too.

I also tried using other mods via imports from your dropbox, but none of them seems to work for me.

Also, your list's top bar mod seems to be fine on my pc, so it's definitely not my computer's problem... should I just post the entire code..?
JPthugnificentOct 2, 2014 11:27 PM
Oct 2, 2014 11:34 PM

Offline
Feb 2010
11294
JPthugnificent said:
Hello Shishio-kun,

I am using one of your custom lists, and it uses the top bar mod that changes the bar to the 'black-grey icon-styled top bar', or it should, but for some time now, it reverted back to the original bar, and I can't change between 'Watching' to 'Completed' and so on without typing &status=# on the url.

I have checked several of your guides, and I am pretty sure I didn't drastically change much, as the top bar reverted just one day, without me touching the css editor. There was about a week when it came back, but now it's back to the original.

Is it just my computer's problem? (I haven't checked on other pc's)

EDIT: I just checked on my iPhone, it's like that there too.

I also tried using other mods via imports from your dropbox, but none of them seems to work for me.


Yeah it wasn't available much after the MAL hacking at the end of August. But if you go to the front page, or the forum stickies (Site Problems) theres a temporary fix for the black/grey top bar and some other missing stuff, but tomorrow I'm going to release a new version of the icon top bar where you can change the colors manually, and it will be crash-proof
Oct 2, 2014 11:34 PM

Offline
Aug 2013
520
JPthugnificent said:
Hello Shishio-kun,

I am using one of your custom lists, and it uses the top bar mod that changes the bar to the 'black-grey icon-styled top bar', or it should, but for some time now, it reverted back to the original bar, and I can't change between 'Watching' to 'Completed' and so on without typing &status=# on the url.

I have checked several of your guides, and I am pretty sure I didn't drastically change much, as the top bar reverted just one day, without me touching the css editor. There was about a week when it came back, but now it's back to the original.

Is it just my computer's problem? (I haven't checked on other pc's)

EDIT: I just checked on my iPhone, it's like that there too.

I also tried using other mods via imports from your dropbox, but none of them seems to work for me.

Also, your list's top bar mod seems to be fine on my pc, so it's definitely not my computer's problem... should I just post the entire code..?
check the site problems sticky topic in the forum




Oct 4, 2014 4:12 AM
Offline
May 2014
9
Hi , i have a little problem , i somehow delete my menu , and i wanna know the css code for it .What menu ... i post a picture below.



And here is my code.I'm still working on my list.

Oct 4, 2014 8:19 AM

Offline
Feb 2010
11294
KickTheHell said:
Hi , i have a little problem , i somehow delete my menu , and i wanna know the css code for it .What menu ... i post a picture below.



And here is my code.I'm still working on my list.



All the status_selected codes, you made them display: none;
Oct 4, 2014 8:41 AM
Offline
May 2014
9
Thanks , my life is more pacefull now.:))
Oct 4, 2014 3:54 PM

Offline
Jun 2013
647
Hi, I used your 'about me' tutorial and found it really useful, however how were you able to put a gif within it, do you still have to split the pictures?
Memento Mori.
Oct 4, 2014 5:10 PM

Offline
Feb 2010
11294
animeno said:
Hi, I used your 'about me' tutorial and found it really useful, however how were you able to put a gif within it, do you still have to split the pictures?


Great! Well in GIMP, choose the spot where you want your GIF at and cut it out like normal with the other pieces. Make sure your spot is the same dimensions as the GIF you're posting, or at least smaller than it. It won't be animated, or have the GIF placed on it yet.

Now, with that piece cut out, drag it back into GIMP or w/e program as a new template- you're going to cover that piece with the animated GIF and upload that, instead of the piece you originally cut. The animation will be layered on top of the original piece like a cake. After draggin the GIF in, hit CTRL + L and go down to the layer with the original piece. Right click and delete it. Now you can export the GIF and edit it, and it will be the same size as your piece so it will fit into your profile graphic. Make sure when you export the GIF in GIMP you change the file extension name to .gif and make sure you have the "as animation" box checked when you export it! This is crucial. Then you upload that GIF pasted over the piece in GIMP.

I find ppl have the easiest time adding GIFs in GIMP this way.

If you want to edit the GIF in GIMP its a little annoying, but there are ways to with the Ctrl + L viewer. I already posted some info about it on the bottom post of this topic:
http://myanimelist.net/forum/?topicid=1266431

PS: don't listen to the guy who says GIMP doesn't support animated GIFs, it totally does
Oct 4, 2014 6:37 PM

Offline
Aug 2014
117
Shishio-kun said:
animeno said:
Hi, I used your 'about me' tutorial and found it really useful, however how were you able to put a gif within it, do you still have to split the pictures?


Great! Well in GIMP, choose the spot where you want your GIF at and cut it out like normal with the other pieces. Make sure your spot is the same dimensions as the GIF you're posting, or at least smaller than it. It won't be animated, or have the GIF placed on it yet.

Now, with that piece cut out, drag it back into GIMP or w/e program as a new template- you're going to cover that piece with the animated GIF and upload that, instead of the piece you originally cut. The animation will be layered on top of the original piece like a cake. After draggin the GIF in, hit CTRL + L and go down to the layer with the original piece. Right click and delete it. Now you can export the GIF and edit it, and it will be the same size as your piece so it will fit into your profile graphic. Make sure when you export the GIF in GIMP you change the file extension name to .gif and make sure you have the "as animation" box checked when you export it! This is crucial. Then you upload that GIF pasted over the piece in GIMP.

I find ppl have the easiest time adding GIFs in GIMP this way.

If you want to edit the GIF in GIMP its a little annoying, but there are ways to with the Ctrl + L viewer. I already posted some info about it on the bottom post of this topic:
http://myanimelist.net/forum/?topicid=1266431

PS: don't listen to the guy who says GIMP doesn't support animated GIFs, it totally does


My god my head hurt trying to read that XD haha i'm not very good with gimp O.o do you know if Photoshop supports GIF's ?
Oct 4, 2014 10:48 PM

Offline
Feb 2010
11294
ZmBzRALIVE said:
Shishio-kun said:


Great! Well in GIMP, choose the spot where you want your GIF at and cut it out like normal with the other pieces. Make sure your spot is the same dimensions as the GIF you're posting, or at least smaller than it. It won't be animated, or have the GIF placed on it yet.

Now, with that piece cut out, drag it back into GIMP or w/e program as a new template- you're going to cover that piece with the animated GIF and upload that, instead of the piece you originally cut. The animation will be layered on top of the original piece like a cake. After draggin the GIF in, hit CTRL + L and go down to the layer with the original piece. Right click and delete it. Now you can export the GIF and edit it, and it will be the same size as your piece so it will fit into your profile graphic. Make sure when you export the GIF in GIMP you change the file extension name to .gif and make sure you have the "as animation" box checked when you export it! This is crucial. Then you upload that GIF pasted over the piece in GIMP.

I find ppl have the easiest time adding GIFs in GIMP this way.

If you want to edit the GIF in GIMP its a little annoying, but there are ways to with the Ctrl + L viewer. I already posted some info about it on the bottom post of this topic:
http://myanimelist.net/forum/?topicid=1266431

PS: don't listen to the guy who says GIMP doesn't support animated GIFs, it totally does


My god my head hurt trying to read that XD haha i'm not very good with gimp O.o do you know if Photoshop supports GIF's ?


Yes it needs to be put into video eventually, its hard to explain without pics or something... maybe an addition to the current vid with other things people commonly ask about like how to put YT vids into the graphic or get their friend/message link. the whole profile tutorial video originally came along cuz I couldn't put making a profile graphic into a topic here without it turning into a fucking 8 page GIMP bible

I'm pretty sure PS supports GIF somehow would be surprised if it didn't, but I never had to.
Oct 5, 2014 2:09 AM

Offline
Aug 2013
520
oh it does, You can edit and create them quite easily.




Oct 5, 2014 3:08 PM

Offline
Aug 2014
117
Oiomi-chan said:
oh it does, You can edit and create them quite easily.


Ah! :D Thank you ^.^
Oct 5, 2014 9:41 PM
Offline
Aug 2014
1
Hi,I for some reason cant see the picture of the anime next to its title.It just shows a blank space.
Oct 5, 2014 11:12 PM

Offline
Aug 2013
520
harbinger-15 said:
Hi,I for some reason cant see the picture of the anime next to its title.It just shows a blank space.
your cover css is broken. I recomend creating a new one using blink or genku




Oct 6, 2014 4:34 AM
Offline
May 2014
9
Hy , im here with another problem :)) again.

I just can't change my avatar.I tryed to delete it first and then uplod it , but it doesn't work , any suggestions?
Oct 6, 2014 7:33 AM

Offline
Sep 2011
235
Change the file extension. For example if your old avatar was .png, change the new one to .jpg if the old one was .jpg change the new one to .png it's really annoying but it's an old bug that never got fixed and I doubt it ever will.
Oct 7, 2014 9:31 AM
Offline
May 2014
9
I tryed doesn't work
Oct 7, 2014 12:21 PM

Offline
Sep 2011
235
It works and is currently the only way to do it. If it didn't work you probably did something wrong.
http://myanimelist.net/forum/?topicid=76425&show=700#msg15521929 this topic explains how to change avatars and profile pics.
Oct 7, 2014 3:05 PM

Offline
Jan 2009
93131
dropbox disabled the public images grrrr - http://i.imgur.com/7MRLIbQ.png any help on how to solve this?
Oct 7, 2014 3:40 PM

Offline
Feb 2010
11294
j0x said:
dropbox disabled the public images grrrr - http://i.imgur.com/7MRLIbQ.png any help on how to solve this?


Have to wait for his dropbox to come back around in a few days when they lift the suspension, or make your own:
http://myanimelist.net/forum/?topicid=1174347

or use my google drive one which is still working (see covers):
http://myanimelist.net/forum/?topicid=73166

Strongly recommend you and everyone else make your own
Oct 7, 2014 4:06 PM

Offline
Jan 2009
93131
Shishio-kun said:
j0x said:
dropbox disabled the public images grrrr - http://i.imgur.com/7MRLIbQ.png any help on how to solve this?


Have to wait for his dropbox to come back around in a few days when they lift the suspension, or make your own:
http://myanimelist.net/forum/?topicid=1174347

or use my google drive one which is still working (see covers):
http://myanimelist.net/forum/?topicid=73166

Strongly recommend you and everyone else make your own


thanks i will try to learn how to make my own
Oct 7, 2014 4:45 PM

Offline
Jan 2009
93131
help needed lol i followed this tutorial - http://myanimelist.net/forum/?topicid=1174347

and uploaded the animecss and mangacss on google drive and created a public shared link
https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/view?usp=sharing
https://drive.google.com/file/d/0B6jCka3xCm1YdjJfNHJjM3FNOEU/view?usp=sharing

but in the advance css editor of MAL i found this 2 lines
@import url(http://dl.dropbox.com/u/78340470/animetitle.css);
@import url(http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css);

where will i get the CSSforFoxgirls.css? and i tried changing the first line to
@import url(https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/);
but nothing happens the images are still not shown

so what steps im missing? thanks in advance for any replies
Oct 7, 2014 5:01 PM

Offline
Jul 2013
381
j0x said:
help needed lol i followed this tutorial - http://myanimelist.net/forum/?topicid=1174347

and uploaded the animecss and mangacss on google drive and created a public shared link
https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/view?usp=sharing
https://drive.google.com/file/d/0B6jCka3xCm1YdjJfNHJjM3FNOEU/view?usp=sharing

but in the advance css editor of MAL i found this 2 lines
@import url(http://dl.dropbox.com/u/78340470/animetitle.css);
@import url(http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css);

where will i get the CSSforFoxgirls.css? and i tried changing the first line to
@import url(https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/);
but nothing happens the images are still not shown

so what steps im missing? thanks in advance for any replies


hmm pretty sure googldrive links aren't supposed to look like that. I think the correct direct links for your files are
anime: https://googledrive.com/host/0B6jCka3xCm1YYnJjWF9SOGV3ODg
manga: https://googledrive.com/host/0B6jCka3xCm1YdjJfNHJjM3FNOEU

also, CSSforFoxgirls fix is here.
Oct 7, 2014 5:22 PM

Offline
Feb 2010
11294
j0x said:
help needed lol i followed this tutorial - http://myanimelist.net/forum/?topicid=1174347

and uploaded the animecss and mangacss on google drive and created a public shared link
https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/view?usp=sharing
https://drive.google.com/file/d/0B6jCka3xCm1YdjJfNHJjM3FNOEU/view?usp=sharing


so what steps im missing? thanks in advance for any replies


Just to clarify something to anyone reading, I don't see anywhere in the tutorial where I said to make Googledrive links, I show how to make Dropbox ones. As far as I know, you don't need to make Googledrive links unless you want to for w/e reason- its still ok to use Dropbox links for yourself- unless your list gets tens of thousands of hits per day. The reason mine and U5's crashed is cuz they were publicly used and I guess the lag or Incapsula ramped up the hits. Many people have recently made their own using their own dropbox, and I haven't heard of anyone's personal dropbox crashing yet
Oct 7, 2014 5:42 PM

Offline
Jul 2013
381
Shishio-kun said:
j0x said:
help needed lol i followed this tutorial - http://myanimelist.net/forum/?topicid=1174347

and uploaded the animecss and mangacss on google drive and created a public shared link
https://drive.google.com/file/d/0B6jCka3xCm1YYnJjWF9SOGV3ODg/view?usp=sharing
https://drive.google.com/file/d/0B6jCka3xCm1YdjJfNHJjM3FNOEU/view?usp=sharing


so what steps im missing? thanks in advance for any replies


Just to clarify something to anyone reading, I don't see anywhere in the tutorial where I said to make Googledrive links, I show how to make Dropbox ones. As far as I know, you don't need to make Googledrive links unless you want to for w/e reason- its still ok to use Dropbox links for yourself- unless your list gets tens of thousands of hits per day. The reason mine and U5's crashed is cuz they were publicly used and I guess the lag or Incapsula ramped up the hits. Many people have recently made their own using their own dropbox, and I haven't heard of anyone's personal dropbox crashing yet


True, but I guess it's easier for people to use google drive (since they probably already have a google account), than to register to dropbox solely for hosting 1 or 2 files. I don't know if it's done yet, but we should include tutorials on making direct google drive links, for people who wish to host their css files on it.
Oct 7, 2014 5:50 PM

Offline
Jan 2009
93131
ok i use dropbox now and the foxgirlcss fix but its still wont show? here is my code - http://pastebin.com/hfyPZvFM
Oct 7, 2014 5:59 PM

Offline
Jul 2013
381
j0x said:
ok i use dropbox now and the foxgirlcss fix but its still wont show? here is my code - http://pastebin.com/hfyPZvFM


that's not a direct link. right click > copy public link to get a direct link
Oct 7, 2014 6:15 PM

Offline
Jan 2009
93131
kuronekodesu said:
j0x said:
ok i use dropbox now and the foxgirlcss fix but its still wont show? here is my code - http://pastebin.com/hfyPZvFM


that's not a direct link. right click > copy public link to get a direct link


i only see this options when i right click the file



EDIT:

got the public link, im suppose to move the files to the public folder
degOct 7, 2014 6:18 PM
Oct 7, 2014 6:17 PM

Offline
Feb 2010
11294
kuronekodesu said:


True, but I guess it's easier for people to use google drive (since they probably already have a google account), than to register to dropbox solely for hosting 1 or 2 files. I don't know if it's done yet, but we should include tutorials on making direct google drive links, for people who wish to host their css files on it.


Yeah, Google actually does seem to be better for public files cuz the one I made to replace the old club covers hasn't crashed yet- I imagine its cuz Google is insanely rich with a million duties so they aren't so concerned about their bandwidth costs as Dropbox.

It would be nice to have a googledrive link specific tutorial, but I won't be writing one any time soon so would be nice if someone else did. iirc making direct links to Googledrive is kinda annoying but about the same trouble as Dropbox now.
Oct 7, 2014 6:19 PM

Offline
Feb 2010
11294
j0x said:
ok i use dropbox now and the foxgirlcss fix but its still wont show? here is my code - http://pastebin.com/hfyPZvFM


I think you coulda kept using your Googledrive imports, they seem to work after Kuro fixed them. Something like this to replace your covers CSS

@import url(https://googledrive.com/host/0B6jCka3xCm1YYnJjWF9SOGV3ODg);


Nevermind, looks like you got it working, good job
Oct 7, 2014 6:27 PM

Offline
Jan 2009
93131
ye thanks to you 2 its working now, and i will experiment with google drive too, thanks again!

EDIT:

googldrive works too, with the one the custom links he posted, thanks!

anime - https://googledrive.com/host/0B6jCka3xCm1YYnJjWF9SOGV3ODg
manga - https://googledrive.com/host/0B6jCka3xCm1YdjJfNHJjM3FNOEU

Host webpages with Drive

With Drive, you can make web resources — like HTML, CSS, and Javascript files — viewable as a website.

To host a webpage with Drive:

Open Drive at drive.google.com and select a file.
Click the Share button at the top of the page.
Click Advanced in the bottom right corner of the sharing box.
Click Change....
Choose On - Public on the web and click Save.
Before closing the sharing box, copy the document ID from the URL in the field below "Link to share". The document ID is a string of uppercase and lowercase letters and numbers between slashes in the URL.
Share the URL that looks like "www.googledrive.com/host/[doc id] where [doc id] is replaced by the document ID you copied in step 6.
Anyone can now view your webpage.

https://support.google.com/drive/answer/2881970?hl=en
degOct 7, 2014 6:42 PM
Oct 9, 2014 5:55 AM
Offline
Dec 2013
3
I need help :C

where is the fix for CSSforFoxgirls.css ??

anyone has the updated link?

thanks a lot v.v
Oct 9, 2014 8:47 AM

Offline
Jul 2013
381
Angius2644 said:
I need help :C

where is the fix for CSSforFoxgirls.css ??

anyone has the updated link?

thanks a lot v.v


here: http://myanimelist.net/forum/?topicid=731665
Oct 12, 2014 4:30 PM
Offline
Oct 2013
14
Is it normal when I make a change in CSS editor and the press "Update CSS" sometimes it will not change my code, and only will do so after some updates, or sometimes it will even change back to the change I deleted 3 or 5 tries ago.

I'm mainly playing with the background atm to see what fits and what not, so I update the code quite frequently to see how it will look.
Oct 12, 2014 6:10 PM

Offline
Feb 2010
11294
AnthonyDraft said:
Is it normal when I make a change in CSS editor and the press "Update CSS" sometimes it will not change my code, and only will do so after some updates, or sometimes it will even change back to the change I deleted 3 or 5 tries ago.

I'm mainly playing with the background atm to see what fits and what not, so I update the code quite frequently to see how it will look.


No, might be lag, or not refreshing/going back after saving that disorients people sometimes when they make many changes
Oct 13, 2014 1:33 AM
Offline
Oct 2013
14
If I want to use
"body {
background-size: cover;
}"

can I just remove "background-position" code?
Oct 13, 2014 2:16 PM

Offline
Oct 2012
124
Hey I'm having trouble with my Manga list. It's not displaying the covers when I hover over them!

Oct 13, 2014 2:20 PM

Offline
Feb 2010
11294
Whalelala said:
Hey I'm having trouble with my Manga list. It's not displaying the covers when I hover over them!


You got to use a manga cover import for the manga list. Try this for now instead of the google drive one:
@import "https://dl.dropboxusercontent.com/s/aunymjyr9cqdxjl/manga.css";
Oct 13, 2014 2:21 PM

Offline
Feb 2010
11294
AnthonyDraft said:
If I want to use
"body {
background-size: cover;
}"

can I just remove "background-position" code?


Kinda depends on what you're doing but you should be able to use them both at same time, I'm pretty sure; try adding the cover code first.
Oct 13, 2014 2:28 PM

Offline
Oct 2012
124
Shishio-kun said:
Whalelala said:
Hey I'm having trouble with my Manga list. It's not displaying the covers when I hover over them!


You got to use a manga cover import for the manga list. Try this for now instead of the google drive one:
@import "https://dl.dropboxusercontent.com/s/aunymjyr9cqdxjl/manga.css";



This seems to interfere with the covers of my anime list. If I hover over akira on my anime list it gives some weird pic of something that has nothing to do with it.

Oct 13, 2014 2:31 PM

Offline
Oct 2012
124
Did'nt work. My manga list displays covers now but my anime list is messed up.

Oct 13, 2014 2:31 PM

Offline
Feb 2010
11294
Whalelala said:
Shishio-kun said:


You got to use a manga cover import for the manga list. Try this for now instead of the google drive one:
@import "https://dl.dropboxusercontent.com/s/aunymjyr9cqdxjl/manga.css";



This seems to interfere with the covers of my anime list. If I hover over akira on my anime list it gives some weird pic of something that has nothing to do with it.


Oh, you don't have a separate CSS for your anime and manga list probably, cuz it seems you're using one cover import for both lists. You need to put the manga covers import on a separate CSS layout for that manga list. If you don't know how, this is how ripped from my tutorial


Question: How do I make a separate layout for my manga list?

Answer:

on this page: http://myanimelist.net/editprofile.php?go=stylepref&do=cssadv
You'll see the link to make another style ID. Click it and use that one for your other list (probably your manga list). Remember you need to set your manga list to this new style ID through this page after you make your style ID: http://myanimelist.net/editprofile.php?go=stylepref&do=changestyle


If you didn't find what you need above, then post your question in our FAQ and Question thread: http://myanimelist.net/forum/?topicid=200323
Reply Disabled for Non-Club Members
Pages (157) « First ... « 44 45 [46] 47 48 » ... Last »

More topics from this board

Sticky: » [ BBCODE ] All 2023 BBcodes, Guides, and Templates

Shishio-kun - Feb 16, 2023

37 by leuscius »»
May 17, 8:33 AM

» [CSS - MODERN] ⭐️ All ways to customize individual anime and individual list rows (mark your favorites!)

Shishio-kun - Sep 4, 2020

12 by takkun_ »»
May 12, 12:00 AM

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

Shishio-kun - Jul 21, 2017

359 by CLModerno »»
May 5, 7:50 PM

» [CSS - MODERN] Add side renders to list layouts (including for each category!)

Shishio-kun - May 15, 2021

3 by gwynsyl »»
May 5, 1:41 PM

» [HALL OF LEGENDS] Hacker09, MyAnimeList's #1 coder!

Shishio-kun - Dec 10, 2023

9 by hacker09 »»
May 2, 9:29 PM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login