New
Dec 6, 2012 11:31 AM
#102
Thanks a bunch :D |
-------Only God will judge me --------![]() iSignature |
Jan 25, 2013 4:56 PM
#104
Well, I wanted to change my background image and I think I put it in the wrong place. Where does it go? I have the code but I must have put it in the wrong place |
Jan 25, 2013 6:07 PM
#105
Furykury1 said: Well, I wanted to change my background image and I think I put it in the wrong place. Where does it go? I have the code but I must have put it in the wrong place Its in the right place but you didn't add the right kind of code and you removed some of the original CSS it needs. Don't use the The part of the top of your code is like this: body { background-image: [IMG]http://i1221.photobucket.com/albums/dd476/Furykury1/Aria3_zps6eb80dc6.jpg[/IMG] background-attachment: fixed; } Change it to this: body { background-image: url(http://i1221.photobucket.com/albums/dd476/Furykury1/Aria3_zps6eb80dc6.jpg); background-attachment: fixed; } Notice I didn't use the [IMG] parts and added back some of the rest like url and the parenthesis. |
Jan 25, 2013 10:05 PM
#106
Shishio-kun, Arigatou! That fixed the problem. I don't change my background very often, but I will be more careful in the future. |
Jan 26, 2013 12:33 AM
#107
Furykury1 said: Shishio-kun, Arigatou! That fixed the problem. I don't change my background very often, but I will be more careful in the future. Its a nice background, so I wouldn't change it often! |
Jan 26, 2013 1:52 PM
#108
Hello, I am a complete ignorant abt CSS and just started a ocuple hours ago venturing into changing some things into this one http://myanimelist.net/forum/?topicid=393393&show=0#msg16773645 (the 2nd one for my animelist) I managed to figure most of the stuff out (the ones I wanted, anyway) but I think I did something cause I have a problem. This ![]() As you can see, the list is over the top bar and I'm not sure how I did it or even if it's my fault.... and that's why I'm posting here :3 I'm using this code @import url(http://veriti.opendrive.com/files/OV81MjgxODdfcXZZMkg/mal_top_bar.css); @import url(http://fonts.googleapis.com/css?family=Englebert); @import url(http://fonts.googleapis.com/css?family=Nunito:700); @import "http://dl.dropbox.com/u/78340470/MahouLayoutCSS/Topbar%20redux.css"; /* BACKGROUND IMAGE */ body { background-image: url(http://image-upload.de/image/bzt9uc/0a45436f44.jpg); background-size: cover; background-attachment: fixed; } /* HEADER COLOR AND FONT These codes control the main headers' fonts and colors. Every header is above each part of your list (they say things like Currently Watching, Completed, Dropped, etc). */ .header_title { background-color:; padding-left: 10px; color:#893D41; font-style:italic; font-family: 'Nunito', sans-serif; font-weight:bold; font-size:72px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-image:url(http://image-upload.de/image/StiEXe/358a5c9725.png); background-repeat:repeat; height:40px; } /* ANIME/MANGA TITLE FONTS This is the type and color of the anime/manga titles on your list, like Bleach, Vampire Knight, etc. */ .animetitle, .animetitle:visited { color:white; font-family: Englebert; font-style: italic; font-size:18px; font-weight:normal; } /* LIST FONTS This is the type and color for more of the numbers, links, and words on the list itself! */ .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color:#CD8591; font-family:Calibri; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:615px; } /* LIST POSITION Change "left" to "right" to switch the list side, or vice versa. */ #list_surround { top:20px; left: 20px; position: absolute;} /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. For example, the default code starts it from the left and top corner of the screen. You change 'right' and 'top' with two properties, they can be any of the following: left, top, bottom, right, or center. So if you want your background to start from the center of the screen, use "center center". If you want it to start from the top and left, use "top left". If you want it to start from the top and center, use "top center". If you want it to start from the right and top, use "right top" If you want it to start from the right and bottom, use "right bottom" and so forth... Additionally, you can change "left" to a % to determine how far left or right the background starts from. For example "30% top" will start the background from the top but 30% of the pic's width from the left of the layout. You can also change top to a % to change the amount you want to start it from the top or bottom. */ body { background-position: right top;} /*OTHER CODES Important codes for the layout's setup. Please don't mess with these unless you know what you're doing! To learn more, use the link at the top of this CSS. */ body { font-weight: light; background-repeat: no-repeat; background-color: #FBFDE8; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:#bc3441; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://image-upload.de/image/g25flK/1868093074.png); background-repeat:repeat; border-width:0; padding:2px; } .category_totals:HOVER, .td1:HOVER, .td2:HOVER, #grand_totals:HOVER, #copyright:HOVER {background-color:black; border-width:0; padding:2px; } .status_selected { background-color:white; padding:2px; color:#CD8591; text-decoration: blink; border-top:2px; border-bottom:2px; border-style:solid; border-color:black; border-right:0px; border-left:0px; } .status_not_selected { background-color:white; padding:2px; color:black; border-top:2px; border-bottom:2px; border-style:solid; border-color:black; border-right:0px; border-left:0px; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info. List design by Lirina"; } .status_selected a{ color:#CD8591; font-weight:bold; } .status_not_selected a{ color:#CD8591; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:70px; padding:2px; padding-left:15px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } Also, I have a question since I can't find it on my own... x.x ![]() Where (or how) can I reduce the space between the "Watching" to the top header with the statuses? /o\ EDIT: An hour after posting this, I made some more changes but my 2 problems remain the same. I didn't change anything beyond stuff I knew. |
MaffyJan 26, 2013 2:54 PM
Jan 26, 2013 5:26 PM
#109
Maffy said: Hello, I am a complete ignorant abt CSS and just started a ocuple hours ago venturing into changing some things into this one http://myanimelist.net/forum/?topicid=393393&show=0#msg16773645 (the 2nd one for my animelist) I managed to figure most of the stuff out (the ones I wanted, anyway) but I think I did something cause I have a problem. This ![]() As you can see, the list is over the top bar and I'm not sure how I did it or even if it's my fault.... and that's why I'm posting here :3 I'm using this code @import url(http://veriti.opendrive.com/files/OV81MjgxODdfcXZZMkg/mal_top_bar.css); @import url(http://fonts.googleapis.com/css?family=Englebert); @import url(http://fonts.googleapis.com/css?family=Nunito:700); @import "http://dl.dropbox.com/u/78340470/MahouLayoutCSS/Topbar%20redux.css"; /* BACKGROUND IMAGE */ body { background-image: url(http://image-upload.de/image/bzt9uc/0a45436f44.jpg); background-size: cover; background-attachment: fixed; } /* HEADER COLOR AND FONT These codes control the main headers' fonts and colors. Every header is above each part of your list (they say things like Currently Watching, Completed, Dropped, etc). */ .header_title { background-color:; padding-left: 10px; color:#893D41; font-style:italic; font-family: 'Nunito', sans-serif; font-weight:bold; font-size:72px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-image:url(http://image-upload.de/image/StiEXe/358a5c9725.png); background-repeat:repeat; height:40px; } /* ANIME/MANGA TITLE FONTS This is the type and color of the anime/manga titles on your list, like Bleach, Vampire Knight, etc. */ .animetitle, .animetitle:visited { color:white; font-family: Englebert; font-style: italic; font-size:18px; font-weight:normal; } /* LIST FONTS This is the type and color for more of the numbers, links, and words on the list itself! */ .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color:#CD8591; font-family:Calibri; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:615px; } /* LIST POSITION Change "left" to "right" to switch the list side, or vice versa. */ #list_surround { top:20px; left: 20px; position: absolute;} /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. For example, the default code starts it from the left and top corner of the screen. You change 'right' and 'top' with two properties, they can be any of the following: left, top, bottom, right, or center. So if you want your background to start from the center of the screen, use "center center". If you want it to start from the top and left, use "top left". If you want it to start from the top and center, use "top center". If you want it to start from the right and top, use "right top" If you want it to start from the right and bottom, use "right bottom" and so forth... Additionally, you can change "left" to a % to determine how far left or right the background starts from. For example "30% top" will start the background from the top but 30% of the pic's width from the left of the layout. You can also change top to a % to change the amount you want to start it from the top or bottom. */ body { background-position: right top;} /*OTHER CODES Important codes for the layout's setup. Please don't mess with these unless you know what you're doing! To learn more, use the link at the top of this CSS. */ body { font-weight: light; background-repeat: no-repeat; background-color: #FBFDE8; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:#bc3441; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://image-upload.de/image/g25flK/1868093074.png); background-repeat:repeat; border-width:0; padding:2px; } .category_totals:HOVER, .td1:HOVER, .td2:HOVER, #grand_totals:HOVER, #copyright:HOVER {background-color:black; border-width:0; padding:2px; } .status_selected { background-color:white; padding:2px; color:#CD8591; text-decoration: blink; border-top:2px; border-bottom:2px; border-style:solid; border-color:black; border-right:0px; border-left:0px; } .status_not_selected { background-color:white; padding:2px; color:black; border-top:2px; border-bottom:2px; border-style:solid; border-color:black; border-right:0px; border-left:0px; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info. List design by Lirina"; } .status_selected a{ color:#CD8591; font-weight:bold; } .status_not_selected a{ color:#CD8591; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:70px; padding:2px; padding-left:15px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } Also, I have a question since I can't find it on my own... x.x ![]() Where (or how) can I reduce the space between the "Watching" to the top header with the statuses? /o EDIT: An hour after posting this, I made some more changes but my 2 problems remain the same. I didn't change anything beyond stuff I knew. If you just want the list to not scroll over the top bar- add this to bottom of the box. #list_surround { z-index: -1 !important; } If you want to reduce the space from the header to the status buttons .header_title { margin-top: -30px; } Adjust the amount of px how you please. |
Jan 27, 2013 12:50 AM
#110
Thanks a lot :D It worked for the top box juuuust great :D Though, about the space reduction, I still have a problem. I added the code to the bottom and sure enough, it reduced the space but it also reduced the space for every header. I find the distance between "Completed", for example, to the list above just great and I don't want that reduced but the distance from "Watching" to the status buttons is almost double that. Is there any way I can specify that? :/ |
Jan 27, 2013 12:13 PM
#111
Maffy said: Thanks a lot :D It worked for the top box juuuust great :D Though, about the space reduction, I still have a problem. I added the code to the bottom and sure enough, it reduced the space but it also reduced the space for every header. I find the distance between "Completed", for example, to the list above just great and I don't want that reduced but the distance from "Watching" to the status buttons is almost double that. Is there any way I can specify that? :/ http://myanimelist.net/forum/?topicid=314657 Get header codes, add margin-top or padding-top and adjust the space as you want. |
Jan 28, 2013 1:33 PM
#112
Jan 28, 2013 11:52 PM
#113
Maffy said: That... didn't take as long as I imagined it xD Thought it'd be much harder than 5 minutes! But you give easy and right to the point instructions :D Everything is great now, thanks a whole lot! My list is now so much prettier with a style than before :D Awesome work :D Thank you! So happy it worked for you and yeah its really easy a lot of ppl give up thinking it will be impossible but it takes like 10 minutes ha. |
Jan 29, 2013 11:57 AM
#114
Yes it's fairly easy when you get down to it. I hope one day to build a style on my own at some point xD I understood the basics :D Also, I have another question. My friend took from the same post I posted here (http://myanimelist.net/forum/?topicid=393393&show=0#msg16773645 ), the first style which had the same list-scrolling-over-top-bar problem. I gave her the code you told me but that pretty much disabled every link in her list. I tried figuring it out that maybe something was clashing with it buuuut I don't really know much about and I failed. Do you know what might be the problem and how we can bypass it? |
Jan 29, 2013 2:39 PM
#115
Maffy said: Yes it's fairly easy when you get down to it. I hope one day to build a style on my own at some point xD I understood the basics :D Also, I have another question. My friend took from the same post I posted here (http://myanimelist.net/forum/?topicid=393393&show=0#msg16773645 ), the first style which had the same list-scrolling-over-top-bar problem. I gave her the code you told me but that pretty much disabled every link in her list. I tried figuring it out that maybe something was clashing with it buuuut I don't really know much about and I failed. Do you know what might be the problem and how we can bypass it? Hmm, I can't say without seeing it unfortunately. I'd have to look at her list but I don't like putting people on the spot cuz some people don't like that, so rather than linking her list here can you PM me her list link, unless you think she'd be fine with you linking her list here lol. |
Jan 29, 2013 3:05 PM
#116
Oh she's ok with it! She's just not that active here and I'm the one pretty much fixing her style xD; http://myanimelist.net/animelist/nekohime23 I put the code again so you can see the problem :D |
Jan 29, 2013 4:12 PM
#117
Maffy said: Oh she's ok with it! She's just not that active here and I'm the one pretty much fixing her style xD; http://myanimelist.net/animelist/nekohime23 I put the code again so you can see the problem :D Oh how weird, I never seen that happen... #list_surround { z-index: 0 !important; } #mal\_control\_strip{ z-index: 1 !important} This will do fine for that but if you have to erase and readd this everytime you save her CSS over, cuz for some reason MAL changes the code so it doesnt work after saving it twice. |
Jan 30, 2013 1:54 AM
#118
Jan 30, 2013 4:59 PM
#119
Wow! O.O It actually worked for me! Thank you so much! |
Jan 30, 2013 6:22 PM
#120
Jan 30, 2013 8:52 PM
#121
NeoAnkara said: I copied all but my list not changing. The only change I made in the code is background image. Is there something wrong with my step? I can see your list customized fine. Log out and check. If you can see it when logged out, maybe you need to uncheck the box next to Style Override. Don't forget to save this setting at the bottom. http://myanimelist.net/editprofile.php?go=listpreferences |
Jan 30, 2013 9:37 PM
#122
Shishio-kun said: I tried to see it when log out and it work but when I see it when log in it doesn't change. Why is that?NeoAnkara said: I copied all but my list not changing. The only change I made in the code is background image. Is there something wrong with my step? I can see your list customized fine. Log out and check. If you can see it when logged out, maybe you need to uncheck the box next to Style Override. Don't forget to save this setting at the bottom. http://myanimelist.net/editprofile.php?go=listpreferences Edit: It's already worked now. Thanks for your time. |
Feb 4, 2013 8:47 PM
#123
Feb 6, 2013 4:17 PM
#124
fireandrew said: Man thanx a lot for your guide! You 're awesome! These are my lists so far and I'm pretty happy with them (I m still a beginner but once I become more adopted to css I ll make a more complex list :D ) AnimeList MangaList Wow really good backgrounds, the artists are great. And you already got the page per category trick working good job. Where did you get these images from?? |
Feb 25, 2013 7:11 AM
#125
Mar 7, 2013 4:20 PM
#126
Thanks for this, it's the best tutorial I've ever used for anything! |
Apr 21, 2013 4:05 PM
#127
i figured, "Today is the day i finally customize my list!" The tutorial seems simple but i'm having trouble with changing my background image. I've copied everything i was supposed to and put a different image in but there is no change to the background. I've pasted the link in multiple times, but nothing. What could it be? |
Apr 21, 2013 5:57 PM
#128
Witeout_203 said: i figured, "Today is the day i finally customize my list!" The tutorial seems simple but i'm having trouble with changing my background image. I've copied everything i was supposed to and put a different image in but there is no change to the background. I've pasted the link in multiple times, but nothing. What could it be? Didn't copy the entire code or left part of it out. There is an extra */ at the top of your CSS throwing the body section off, this is left over from part of the top instructions that got cut off. That part either wasn't copied in full or was deleted on purpose but not deleted in its entirety. Anyways if you just remove that */ tho it will be fine and show the bg. |
Apr 21, 2013 6:16 PM
#129
Shishio-kun said: Witeout_203 said: i figured, "Today is the day i finally customize my list!" The tutorial seems simple but i'm having trouble with changing my background image. I've copied everything i was supposed to and put a different image in but there is no change to the background. I've pasted the link in multiple times, but nothing. What could it be? Didn't copy the entire code or left part of it out. There is an extra */ at the top of your CSS throwing the body section off, this is left over from part of the top instructions that got cut off. That part either wasn't copied in full or was deleted on purpose but not deleted in its entirety. Anyways if you just remove that */ tho it will be fine and show the bg. Thanks so much. it worked. Now on to putting different colors in their. thanks again |
Apr 22, 2013 8:43 AM
#130
Where would i look to find how to make the word in the header move to the center? Like "Watching" for example. And is it possible to change the opacity of said header? I know i am asking a lot of questions but this is the last one. |
Apr 22, 2013 8:57 AM
#131
Witeout_203 said: Where would i look to find how to make the word in the header move to the center? Like "Watching" for example. And is it possible to change the opacity of said header? I know i am asking a lot of questions but this is the last one. .header_title { text-align: center; That should work :) |
Apr 22, 2013 9:24 AM
#132
TheHolyPotato said: Witeout_203 said: Where would i look to find how to make the word in the header move to the center? Like "Watching" for example. And is it possible to change the opacity of said header? I know i am asking a lot of questions but this is the last one. .header_title { text-align: center; That should work :) Thanks, worked like a charm |
May 8, 2013 8:44 AM
#133
I'm really sorry, but no matter what I do, my list's appearance doesn't change!! I was wondering if you could help at all? I'd be willing to provide screenshots and whatever else you would need! |
May 8, 2013 9:37 AM
#134
lilligant said: I'm really sorry, but no matter what I do, my list's appearance doesn't change!! I was wondering if you could help at all? I'd be willing to provide screenshots and whatever else you would need! Ae you sure you changed the list style? |
May 8, 2013 3:22 PM
#135
TheHolyPotato said: lilligant said: I'm really sorry, but no matter what I do, my list's appearance doesn't change!! I was wondering if you could help at all? I'd be willing to provide screenshots and whatever else you would need! Ae you sure you changed the list style? i'm sure! |
May 8, 2013 11:07 PM
#136
@lilligant Whenever you have the coding, lets say you have "Hi" in there. Whenever you go and erase that to lets say, "Bye" and ten update css, it will change on the list. Although, whenever you go back to the css box it will still say "Hi" If you want to permanently save it, refresh the page and then "Bye" will be there. I dont know if this is only for me but this might be whats wrong :/ Hopefully you kinda get what I'm saying, im bad at explaining things :p |
May 11, 2013 3:03 PM
#137
lilligant said: I'm really sorry, but no matter what I do, my list's appearance doesn't change!! I was wondering if you could help at all? I'd be willing to provide screenshots and whatever else you would need! Your list has the Miku starting style but you used a Tumblr link and you have a black background that doesn't show the pic. I don't think Tumblr allows direct linking so use an image-hosting site like Photobucket Tinypic Imgur etc.. |
Jun 8, 2013 2:42 AM
#138
Thank you so much for this :'D this is the result of all your help: IceMake_FT07 |
Oct 5, 2013 3:44 PM
#140
Woah, thanks a bunch for this brilliant tutorial. Maybe what I've managed to do wasn't much of a work compared to others', but that's all I can do for now :P |
improperOct 5, 2013 3:47 PM
Oct 28, 2013 1:48 PM
#141
I'm having trouble with my background image if you could look at my anime list please you will see its cutting the top of the image of slightly is it cause i put "center center" for the background image if so should i put just "center" if someone could help many thanks |
Nov 4, 2013 11:14 PM
#143
mejordan1993 said: I'm having trouble with my background image if you could look at my anime list please you will see its cutting the top of the image of slightly is it cause i put "center center" for the background image if so should i put just "center" if someone could help many thanks Raise or lower the % amount after body { background-position: in your code to get the pic where u want it |
Mar 16, 2014 8:53 PM
#144
I attempted to use one of the donated layouts (actually, a lot of them), and every time I tried to change the background it'd actually remove the previous background and instead, have no background and go with it's default background colour. :/ I'm not sure why this is happening? |
Mar 18, 2014 3:17 PM
#145
Laciie said: I attempted to use one of the donated layouts (actually, a lot of them), and every time I tried to change the background it'd actually remove the previous background and instead, have no background and go with it's default background colour. :/ I'm not sure why this is happening? I don't know either, post code with problem and background you want. Also when you save changes save once and hit back in your browser, as pointed out in first post. If you keep saving changes without going back you will keep saving over old changes. |
Jul 1, 2014 8:01 AM
#146
I can't change the font for headers. I can change everything else but the font for "Wtaching, Completed..." stays as Times New Roman no matter what I do. What am I doing wrong. |
Aug 21, 2014 5:22 PM
#147
hi, I have a question. can i change the color of Airing and Not Yet Aired? I know I can change the color and design but what I wanna know is can I change the two things in each different colors like: Airing [in green] and Not Yet Aired [in red] is that possible? |
Sep 18, 2014 6:16 AM
#149
ZeZartha said: I can't change the font for headers. I can change everything else but the font for "Wtaching, Completed..." stays as Times New Roman no matter what I do. What am I doing wrong. Maybe you've changed your layout, but your list uses custom image headers now so you'd have to change the image. For other layouts, add !important (with a space in front of it) before the semi-colon on the line where you change your font-family. |
Sep 18, 2014 6:19 AM
#150
Crash333 said: hi, I have a question. can i change the color of Airing and Not Yet Aired? I know I can change the color and design but what I wanna know is can I change the two things in each different colors like: Airing [in green] and Not Yet Aired [in red] is that possible? I haven't looked into this ever, so I don't know an easy way off the top of my head, except manually which is too much trouble |
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 |
7918 |
by takkun_
»»
4 hours ago |
|
» [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 helpthreat - 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 FixesShishio-kun - Mar 8, 2021 |
30 |
by Shishio-kun
»»
Jul 28, 3:17 AM |