New
Jun 2, 2010 8:47 PM
#4001
saka said: Wordpad? ...kill me now. Get a text editor with syntax highlighting that cares about encoding... Haha. You make it seem like making a list design is such a big deal. It's not like we're trying to program an entire website here. What's wrong with just copying the code some place else just in case the original gets messed up? ^^ |
Jun 2, 2010 8:59 PM
#4002
well, if you're writing some css as an advanced user it really helps.... and if you're writing css as a novice learner it really helps..... plus a good text editor is extremely useful to have for reasons other than a list design. Installing them is really simple so I don't see the harm. You'd be surprised how many people ask me questions about scripting and stuff only to find that the culprit is wordpad putting invisible control and formatting codes into the beginning of the document. It doesn't matter as much for css unless you're stupid and save as RTF or something, but bad habits are bad habits. |
Jun 2, 2010 9:09 PM
#4003
I normally wouldn't touch this programming stuff with a 10-foot pole, but the css for list designs is so easy that even I can do it. Wordpad has been a handy back-up for the few times that I accidentally screwed up the code in the browser. Other than that, everything is a piece of cake. If I ever decide to do other types of coding, then I'll look into those programs that you've recommended. :) It just seems a bit like overkill using them with list designs (the simple ones I do), but that's my opinion anyway. |
Jun 3, 2010 3:40 AM
#4004
saka said: And yeah, you can use a lot of tricks to hide your code, like hex-encoding the @import url and hex-encoding the css itself (in a format like FF for each letter); that makes decoding difficult for non-techies but older or non-standard browsers will not be able to see your css (pretty much just IE and very old versions of other browsers). I don't know if I'd call it difficult, as long as you can realise it's hex there are charts for people who don't know it already. More boring sifting through the hex than difficult, but I only know to decode it manually letter by letter. Back to lists, is there a way to put a border around each category?(cw,completed, ptw, oh, dropped). Could try to border the headers and the category footers but bordering the sides of .td1 and .td2 will produce borders inside. |
Jun 4, 2010 2:41 AM
#4005
MajorJoseph said: That's exactly why it works... you can easily convert them by automated means, but not everyone knows that (including yourself apparently). It's not great security by any means, but it does make it more difficult.I don't know if I'd call it difficult, as long as you can realise it's hex there are charts for people who don't know it already. More boring sifting through the hex than difficult, but I only know to decode it manually letter by letter. \4d\79\20\68\61\6d\73\74\65\72\20\6d\69\6e\69\6f\6e\73\20\77\69\6c\6c\20\62\65\20\74\68\65\72\65\20\74\6f\20\64\69\73\70\6f\73\65\20\6f\66\20\79\6f\75\20\73\68\6f\72\74\6c\79\2e MajorJoseph said: The best way is to make your own borders in photoshop and set the images as backgrounds to the headers and .category_totals which I think is what you're going for. The tricky part is the inner cells, since I assume you only want an outside border.... I think the only way to style just the cells and not the headers is to use a "style them all then ignore the headers" approach like I did in the row hover css a couple pages back. Something like this:Back to lists, is there a way to put a border around each category?(cw,completed, ptw, oh, dropped). Could try to border the headers and the category footers but bordering the sides of .td1 and .td2 will produce borders inside. /* style all rows -- each row is a table for some reason*/ #list_surround table { border-left: 1px solid #0f0; border-right: 1px solid #0f0; } /* ...but not the category headers or top links */ #list_surround table[align=center] { border: 0; } /* some really basic styles on the headers and category totals, you'll probably have image backgrounds instead */ .header_title { border-bottom: 1px solid #0f0; } .category_totals { border-bottom: 1px solid #0f0; } ...that'll put a green border around each category. Of course, you can substitute images for the table borders instead by using background: url(...) repeat-y; in the cells and a carefully sized slice from photoshop or your image editor of choice. |
Jun 4, 2010 4:31 AM
#4006
saka said: I managed to get the borders how I wanted but usingThe best way is to make your own borders in photoshop and set the images as backgrounds to the headers and .category_totals which I think is what you're going for. The tricky part is the inner cells, since I assume you only want an outside border.... I think the only way to style just the cells and not the headers is to use a "style them all then ignore the headers" approach like I did in the row hover css a couple pages back. Something like this: /* style all rows -- each row is a table for some reason*/ #list_surround table { border-left: 1px solid #0f0; border-right: 1px solid #0f0; } /* ...but not the category headers or top links */ #list_surround table[align=center] { border: 0; } /* some really basic styles on the headers and category totals, you'll probably have image backgrounds instead */ .header_title { border-bottom: 1px solid #0f0; } .category_totals { border-bottom: 1px solid #0f0; } ...that'll put a green border around each category. Of course, you can substitute images for the table borders instead by using background: url(...) repeat-y; in the cells and a carefully sized slice from photoshop or your image editor of choice. #list_surround table bordered the category footer without accounting for the rounded corners so I had to border that seperately in .category_totals and then for the bulk of the table use the following adjusted code.{ border-left: 1px solid #0f0; border-right: 1px solid #0f0; } #list_surround table tbody tr td[width="30"] Thanks for the help on that, much appreciated. I know barely anything about using the table, tbody, tr and td from the html but I can see how to by looking.{ border-left: 1px solid #fbba3c; } #list_surround table tbody tr td[width="70"] { border-right: 1px solid #fbba3c; } |
Jun 4, 2010 8:01 AM
#4007
Urgh..I've done..what..2 lists, and i puke everytime i try. Results up up not being what i wanted due to coding errors/deficiencies here and there. Should I learn basic css, or continue using the simple mal 'css list tutorials'? I find that not understanding everything often turns up multiple errors. |
Jun 5, 2010 1:02 PM
#4008
Finally updated: http://myanimelist.net/animelist/Forseen Nothing complicated, first try with CSS. |
Jun 5, 2010 1:34 PM
#4009
@Passimus Learning css is not needed to make a decent looking list, but sort of required to do some of the more advanced things you might see around. I quite like your list only I don't know where the background is from. =p You can try and pick up bits from other people's lists and see what works and does what. @Forseen I think the list is held down by it being difficult to read the text, if that was fixed it would be better. Might be worth having the list only partially transparent or maybe even full white. I'd say it's definitely good for the first time using css. |
Jun 5, 2010 10:13 PM
#4010
@Passimus - I'm by no means an expert in CSS, but I'm starting to catch on, just from practice and looking at other peoples' coding. Before reading the tutorial here on MAL I had absolutely no experience at all. I'm still not great at it, but I think I'm making progress. So my recommendation is just to keep trying things. If you see something you like on someone else's list, check their code to see how they did it and you might be able to use something similar on your own list. |
![]() |
Jun 6, 2010 11:05 AM
#4011
@ valtizar: That's an awesome FF13 list! Unfortunately I've given up on the game after 25 unrewarding hours. ;_; |
Jun 6, 2010 1:55 PM
#4012
Thank you Yves, I'm glad you like it. I think your dango list is really cute ^^ I'm enjoying the game rather alot. It's too bad you're finding it unrewarding. Perhaps sometime in the future you can go back to it and enjoy it a little more :) |
![]() |
Jun 7, 2010 8:26 PM
#4013
Perhaps... I'll probably try to finish it when I'm bored just to get the Achievements (Xbox 360). Supposedly, the ending is very good. I'll be looking forward to that. Some of the boss battles are very entertaining, actually, like the one at the end of disc 2 of the Xbox 360 version. I won't say anymore to avoid spoilers. :D |
Jun 9, 2010 1:30 PM
#4014
I play it on PS3, so it's all one disc for me. I'll be looking forward to the ending as well though. But with that, I'm going to stop talking about it on this thread. I don't want to spam xD If you still want to chat about it feel free to send me a comment though ^^ |
![]() |
Jun 10, 2010 12:40 PM
#4015
Haha. Yeah. It seems like no one has posted a list design in a while now. Everyone probably thought this is the FF13 thread instead. jk *starts working on a new list design* |
Jun 11, 2010 6:31 PM
#4016
Jun 11, 2010 11:35 PM
#4017
Yay for laziness~ :3 |
Jun 12, 2010 12:27 AM
#4018
Probably going to see more new list designs..... with the list markup changing a bit and statuses removed. The changes aren't big, but people are going to be looking at their lists a bit more than usual. My anime list was only a one-line fix, but I'll have to do something else with my manga list since grand totals is gone.... *sigh* |
Jun 12, 2010 3:54 AM
#4019
Both my lists suffered minor damage due to the changes. Only thing bugging me is the large black area on my anime list now because the list doesn't cover the whole page. I'm going to need to edit the code for some of my old list designs however. They've removed the grand totals from the html but if you look at somebodies code who has never altered it the #grand_totals is still included. Is this due to the time at which that code was generated? So anyone who joins post-update will not see #grand_totals in the css. Other than the pagination and the removal of #grand_totals I cannot notice any other changes. |
Jun 13, 2010 10:41 AM
#4020
Mine was changed a little bit too. Currently watching, completed and all other categories are now separate instead of all on one page. I suppose I'll have to sort through the code later and fix it *sigh* |
![]() |
Jun 14, 2010 8:29 AM
#4021
@Oresund I'm not sure why the header does not appear right away. One thing you might try but i'm not sure if it will change anything. Instead of .header_cw { height:70px; position:relative; top:20px; z-index:-1; background-image:url(http://i299.photobucket.com/albums/mm319/Oresound/animanga%20list%20design/watch.png); } put .header_cw { background-image:url(http://i299.photobucket.com/albums/mm319/Oresound/animanga%20list%20design/watch.png); height: 60px; background-position: top; } Actually looks like they've moved the page changing text up to the MAL bar so that's no issue. To hide the rest use the following. .header_title { display: none; } This will hide both bits of text. There are ways of only hiding the 'Completed' text or only hiding the 'Add Anime' text. .header_title div { display: none; } That will only hide the 'Add Anime' text. Not sure about only hiding 'Completed' text, something like this MIGHT work... .header_title { display: none; } .header_title div { display: inline; } On a side note, if you're going to use z-index like that, putting -1 on a image will always send it to the back, not the front. |
HonarisJun 14, 2010 8:32 AM
Jun 14, 2010 12:08 PM
#4022
I'm sort of annoyed that the lists have reverted back to before the changes, except for some minor details that don't alter the list design much like the search box. Grand Totals is coming back at some point too. For any who want to style the search box and don't know how... #searchBox { background-color: #000000; color: #fbdd1d; border: 1px solid #fbba3c; } Other css should work fine like text-decoration, etc... Can use #searchListButton to apply css to the magnifying glass part but I don't believe it's possible to remove the magnifying glass but feel free to border it and whatever else you might want. |
Jun 14, 2010 12:31 PM
#4023
MajorJoseph said: huh? ...you can hide the button no problem with a display:none and the form still works (using Enter). Still, I think it's fine the way it is and should stay there for usability. You can probably even change the image if you're clever.Can use #searchListButton to apply css to the magnifying glass part but I don't believe it's possible to remove the magnifying glass but feel free to border it and whatever else you might want. |
Jun 14, 2010 1:07 PM
#4024
saka said: MajorJoseph said: huh? ...you can hide the button no problem with a display:none and the form still works (using Enter). Still, I think it's fine the way it is and should stay there for usability. You can probably even change the image if you're clever.Can use #searchListButton to apply css to the magnifying glass part but I don't believe it's possible to remove the magnifying glass but feel free to border it and whatever else you might want. Oh, that's my bad wording. You can remove the magnifying glass that way but I don't know a way to change the magnifying glass to something else, is what I meant to say. I don't know if this is 100% concrete due to lacking knowledge but I searched around and couldn't find a way to change an img element's src attribute from css. |
Jun 14, 2010 4:37 PM
#4025
Looking at it again, replacing the image link really is not possible, since he used just an image with an id tied to some javascript. If he'd used a link around the image (the standard way), it would be trivial. *facepalm* I tried using :before and absolute positioning to put another image over the magnifying glass. It worked, but you lose the link which is the whole point. |
Jun 14, 2010 7:42 PM
#4026
I love these new list changes.... Not! I'm glad to see that an "All Anime" status was added, but that messed up my anime list status bar. The text isn't completely in the box. Does anyone know how to fix that? Or do I just make the box bigger? >_< And also, I can't completely scroll through my manga list. So lame. I think I'll screw it up horribly if I try to fix it myself. [edit] nvm. I fixed the status thing. |
YvesJun 14, 2010 8:08 PM
Jun 14, 2010 10:09 PM
#4027
Well, there was a "Show All" before, though it's been changed slightly. It used to be you could control which statuses showed in the navigation at the top, and you could also choose a custom combination of statuses for when it first loaded. Those were removed so now all lists have the same top links. I used to have Dropped status hidden by default, but you can't hide them anymore so after the redesign my top nav stuck off the edge... ![]() I didn't want to make my list wider so I just decreased the font size. :-/ |
Jun 14, 2010 10:43 PM
#4028
saka said: Looking at it again, replacing the image link really is not possible, since he used just an image with an id tied to some javascript. If he'd used a link around the image (the standard way), it would be trivial. *facepalm* I tried using :before and absolute positioning to put another image over the magnifying glass. It worked, but you lose the link which is the whole point. It's possible, here is the trick xD : #searchListButton { opacity:0; filter:alpha(opacity=0); width:15px; height:15px; } #search { background:transparent url(http://img41.imageshack.us/img41/7799/smileytransparent.png) bottom right no-repeat; } See it working on my list: http://myanimelist.net/animelist/kwizatz |
Jun 14, 2010 10:54 PM
#4029
Jun 14, 2010 11:59 PM
#4030
@Yves: without the grand totals to help push your manga list up, one of the ways to push your list up is adding: #inlineContent { display: block !important; height: 550px; } I had to make use of inlineContent for my overlay since I was using grand_totals previously. @kwizatz: nice opacity trick :) also, I like how you put the # of entries for each status. |
Jun 15, 2010 9:06 AM
#4031
Jun 15, 2010 10:36 AM
#4032
hmm, but he's got the copyright fixed as an overlay. Though padding-bottom on list_surround should work, I wasn't sure if more padding needed to be added as the list grew. off-topic, but nice sig/avy you got there saka. |
Jun 15, 2010 12:39 PM
#4033
Hey guys, I just updated my anime & manga list design but I have a question. * How can I remove the gaps that are between the "Currently watching", "Completed", etc sections in "All anime" Thanks you :} |
![]() |
Jun 15, 2010 12:47 PM
#4034
@Kuro-Neko-Chan Couple of ways. #list_surround { background-color: #ffffff; } I'm guessing you don't want that though. Other way probably better. .header_completed, .header_onhold, .header_dropped, .header_ptw { margin-top: -12px; } Might need more than 12 though, not sure. There are other ways of doing it i'm sure but there are a couple. |
HonarisJun 15, 2010 1:01 PM
Jun 15, 2010 1:10 PM
#4035
Jun 15, 2010 2:05 PM
#4036
Thanks a lot, it worked ^^ |
![]() |
Jun 15, 2010 4:17 PM
#4037
@ kwizatz: That's pretty cool. I'll definitely use that on my next list. @ scorpedo and saka: Thanks, I succeeded in pushing up my list. But now that the Grand Totals is gone, so is the image I had at the bottom of my list. What can I attach it to or do to put if back on my list? |
Jun 15, 2010 4:33 PM
#4038
I'm not sure what you had there previously, but you can certainly put it as the background to the #copyright div... #copyright { ... just adjust the paddings to your liking.background: url(http://path.to/your/image.png) no-repeat top center; padding-top: 250px; /* the height of your image, whatever it is */ padding-bottom: 550px; /* if you want space underneath still */ } |
Jun 15, 2010 4:47 PM
#4039
Well, I'm already using the copyright for the overlay. How can I do it with the bar at the very top, since I don't use it anyway? |
Jun 15, 2010 4:49 PM
#4040
you can go ahead and add what you had in the grand_totals to the inlineContent Yves, ie: #inlineContent { display: block !important; height: 1050px; background: url(http://i91.photobucket.com/albums/k309/ngamer18/Lucky_Star_-_Angry_Konata3.gif) no-repeat 80px 0px; } you might be looking at the anime instead of manga list saka :X |
Jun 15, 2010 5:53 PM
#4041
Jun 15, 2010 6:10 PM
#4042
@ scorpedo: Wow. You can use the inlineContent for so much. It's so convenient! Thanks! @ saka: Sorry for the confusion! :( |
Jun 15, 2010 10:22 PM
#4043
Jun 16, 2010 4:58 PM
#4044
Jun 16, 2010 5:13 PM
#4045
Hello Moony :) I'm not sure how you had the status bar before, but if you want to disable them and always have it show all you can add .status_selected, .status_not_selected {display:none;} for the 'more' buttons, change the two *[id^='menu'] to *[id^='more'] |
Jun 16, 2010 7:24 PM
#4046
Jun 17, 2010 10:27 AM
#4047
new anime list design > http://myanimelist.net/animelist/Sopek |
Jun 17, 2010 10:44 AM
#4048
Jun 17, 2010 3:20 PM
#4049
@ Moronicidiot: Thanks! Glad you like it. @ Moony: Possibly the most stylish anime list I've ever seen. I like the sort of 3D effect your list has where it seems like it's floating a few inches above the bg. What's the name of the font that you use for the headers? @ Sopek: Cool list. But I think I would make each of the header pics shaded blue/black to match the background. I don't know. Just a thought. |
Jun 17, 2010 4:51 PM
#4050
scorpedo said: @Moony: Looks very good :) and the grand totals should be back in the future. Thank you Scorpedo <3 I have this design for a year already, but just can't leave it and do another... so... I limit myself trying to improve it xD I hope the grand totals come back soon º^º Yves said: @ Moony: Possibly the most stylish anime list I've ever seen. I like the sort of 3D effect your list has where it seems like it's floating a few inches above the bg. What's the name of the font that you use for the headers? Omg! Thank you *w* The font I used is "Mistral" with bold and small caps selected^^ Link: http://www.fontyukle.com/en/1,MISTRAL |
MoonyJun 17, 2010 4:57 PM
More topics from this board
» New Clashing Feelings volume after a decadeShiratori-san - Sep 27 |
4 |
by Shiratori-san
»»
6 hours ago |
|
» MyAnimeList x Honeyfeed Writing Contest 2025 SubmissionAvarion - Yesterday |
2 |
by Avarion
»»
10 hours ago |
|
» MAL Analog HorrorWendy-- - Sep 27 |
10 |
by Shizuna
»»
Yesterday, 3:05 PM |
|
» Vladimir Volfovich Zhirinovsky's MAL Diary of Kawai MemoriesV_V_Zhirinovsky - Yesterday |
1 |
by V_V_Zhirinovsky
»»
Yesterday, 1:00 AM |
|
» New Android App – Shimeji Mascot Screen Petsshimejimascot - Sep 26 |
8 |
by hacker09
»»
Sep 26, 10:03 PM |