New
May 21, 2015 4:37 AM
#2801
Corwen said: Shishio-kun said: Corwen said: Hello! I'm here to ask a question again lol XD I can't seem to fix this problem regarding the highlighting when hovered over an anime title. Here's a picture of it: I want it to highlight the entire row and not just one element. It only highlights the list properties individually. Here's the code I'm using: @import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow); @import url(http://fonts.googleapis.com/css?family=Pacifico); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i.imgur.com/KLeZwhx.jpg); 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). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations). */ .header_title { background-color:moccasin; color:black; font-family: 'Pacifico', cursive; font-size:30px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:lightslategray; } /* 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:moccasin; font-family: 'PT Sans Narrow', sans-serif; font-size:16px; } /* 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:white; font-family: 'PT Sans Narrow', sans-serif; font-size:14px; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:680px; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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: center 43%;} /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:moccasin; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } body { background-size: cover; } #list_surround { position: absolute !important; left: 80px !important;} td.table_header:nth-of-type(1), .td1:nth-of-type(1), .td2:nth-of-type(1){ border-color: transparent !important; border-style: solid; border-width: 0 0 0 2px !important; } .table_header:nth-of-type(3), td:nth-of-type(3){ border-color: transparent !important; border-style: solid; border-width: 0 0 0 0 !important; } .category_totals{ border-width: 0 2px 2px 2px !important; border-color: transparent; border-radius: 0 0 25px 25px; border-style: solid !important; } /*PADDING The space around the words in your list. */ .status_selected:hover, .header_title:hover, .td1:hover, #grand_totals:hover, .status_not_selected:hover, .table_header:hover, .category_totals:hover, .td2:hover, #copyright:hover, .status_selected, .header_title, .td1, #grand_totals, .status_not_selected, .table_header, .category_totals, .td2, #copyright{ padding: 8px; } /* COLOR OF THE ICONS Change the color, and adjust the opacity for brighter color. Remove the display: none to match the selected icon to the other icons. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { background: transparent; opacity: .9; } /* BORDER OF ICONS If you're having trouble seeing the border bottom, lower the height by a pixel or two until you see it. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before, #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { border-color: ; border-style: ; border-width: ; height: 32px !important; } /* BUTTONS COLOR AND BORDER Buttons within the hover menus, not the icons themselves. Second code is for button color on hover. */ #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a img{ background-color: rgba(64, 60, 90, 0.6) !important; border-color: transparent; border-style: solid !important; border-width: 1px !important; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover, #mal_cs_powered a img:hover { background-color: #403C5A !important; } /* COLOR OF HOVER MENUS AND SELECTED ICONS Remove display none from the second code to match the colors of the selected icon to the icons above. */ #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd, #mal_cs_powered a { background-color: rgba(255, 255, 255, 0.6) !important; } #mal_cs_listinfo:hover:before, #mal_cs_links:hover:before, #mal_cs_otherlinks:hover:before, #mal_cs_powered:hover:before, #mal_cs_listinfo:hover:after, #mal_cs_links:hover:after, #mal_cs_otherlinks:hover:after, #mal_cs_powered:hover:after { display: none; background-color: ; opacity: .2; } /* COLOR OF USERNAME (for visitors) You don't see this username on the menus when you're logged in, log out to see it. */ #mal_cs_otherlinks strong a { color: #333333 !important; } #mal_cs_otherlinks strong a:hover { color: blue !important; background-color: transparent !important; } /* POSITION OF TOP BAR Change to absolute if you want it to not scroll with the page. */ #mal_control_strip { position: fixed !important; background-color: transparent !important; background-image: url(none) !important; } /* COLOR OF THE ICONS Change the color, and adjust the opacity for brighter color. Remove the display: none to match the selected icon to the other icons. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { background: transparent; opacity: .9; } /* BORDER OF ICONS If you're having trouble seeing the border bottom, lower the height by a pixel or two until you see it. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before, #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { border-color: ; border-style: ; border-width: ; height: 32px !important; } /* BUTTONS COLOR AND BORDER Buttons within the hover menus, not the icons themselves. Second code is for button color on hover. */ #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a img{ background-color: rgba(64, 60, 90, 0.6) !important; border-color: transparent; border-style: solid !important; border-width: 1px !important; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover, #mal_cs_powered a img:hover { background-color: #403C5A !important; } /* COLOR OF HOVER MENUS AND SELECTED ICONS Remove display none from the second code to match the colors of the selected icon to the icons above. */ #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd, #mal_cs_powered a { background-color: rgba(255, 255, 255, 0.6) !important; } #mal_cs_listinfo:hover:before, #mal_cs_links:hover:before, #mal_cs_otherlinks:hover:before, #mal_cs_powered:hover:before, #mal_cs_listinfo:hover:after, #mal_cs_links:hover:after, #mal_cs_otherlinks:hover:after, #mal_cs_powered:hover:after { display: none; background-color: ; opacity: .2; } /* COLOR OF USERNAME (for visitors) You don't see this username on the menus when you're logged in, log out to see it. */ #mal_cs_otherlinks strong a { color: #333333 !important; } #mal_cs_otherlinks strong a:hover { color: blue !important; background-color: transparent !important; } /* POSITION OF TOP BAR Change to absolute if you want it to not scroll with the page. */ #mal_control_strip { position: fixed !important; background-color: transparent !important; background-image: url(none) !important; } /* OTHER CODES If you want to change out the icon images themselves, you can scroll down through the codes and find the background images and change them with your own. */ #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { -moz-box-sizing: border-box; transition: all 0.4s ease 0s; background: none no-repeat scroll 100% 0 transparent; border: 0 none; height: 0 !important; overflow: hidden; position: absolute; right: 4px; text-align: center; top: 4px; width: 150px; z-index: 10; } #mal_cs_listinfo:hover, #mal_cs_links:hover, #mal_cs_otherlinks:hover, #mal_cs_powered:hover { height: 200px !important; padding-top: 32px; width: 150px; } #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd { transition: opacity 0.4s ease-in-out 0s; border-radius: 3px 0 0 0; font-size: 0 !important; line-height: 0; margin: 0 !important; opacity: 0; padding: 8px 0 0; } #mal_cs_listinfo:hover div, #mal_cs_links:hover div, #mal_cs_otherlinks:hover div, #mal_cs_powered:hover div, #mal_cs_powered:hover dd { opacity: 1; } #mal_cs_listinfo div:nth-of-type(2), #mal_cs_links div:nth-of-type(2), #mal_cs_otherlinks div:nth-of-type(2), #mal_cs_powered div:nth-of-type(2) { border-radius: 0 0 3px 3px; padding: 4px 0 8px; } #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a { background-color: rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; font: 13px/17px arial,sans-serif; margin: 4px 12px 0; padding: 3px 0; text-decoration: none; } #mal_cs_listinfo a:nth-of-type(1), #mal_cs_links a:nth-of-type(1), #mal_cs_otherlinks a:nth-of-type(1), #mal_cs_powered a:nth-of-type(1) { margin-top: 0; } #mal_cs_listinfo strong a strong { font-weight: normal; } #mal_cs_otherlinks strong { color: #333333; display: block; font: bold 13px/17px arial,sans-serif !important; padding: 0 4px 4px; text-shadow: 0 1px 1px #FFFFFF; } #mal_cs_otherlinks strong a { background: none repeat scroll 0 0 transparent !important; border-color: transparent !important; border-radius: 0 0 0 0; color: #333333; display: inline; font: bold 13px/17px arial,sans-serif !important; margin: 0; padding: 0; text-shadow: 0 1px 1px #FFFFFF; } #mal_cs_powered a { border-radius: 3px 0 0 0 !important; display: block !important; margin: 0 !important; opacity: 0; padding: 8px 0 0 !important; } #mal_cs_powered:hover a { opacity: 1; } #mal_cs_powered a img { background: url("http://i.imgur.com/fGTjBC3.png") no-repeat scroll 50% 6px rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; height: 0; margin: 0 12px; padding: 23px 0 0 126px; width: 0; } #mal_cs_powered a img:hover { background-color: #403C5A; } #mal_cs_powered #search { border-radius: 0 0 3px 3px; padding: 8px; position: relative; } #mal_cs_powered #search #searchBox { -moz-box-sizing: border-box; border-color: #BCBCBC #D6D6D6 #D6D6D6; border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #333333; display: inline-block; font-family: arial,sans-serif; font-size: 13px; height: 28px; padding-left: 6px; padding-right: 24px; vertical-align: top; width: 100%; } #mal_cs_powered #search #searchBox:hover, #mal_cs_powered #search #searchBox:focus { border-color: #ACACAC #C6C6C6 #C6C6C6; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; } #mal_cs_powered #search #searchListButton { background: url("http://i.imgur.com/XqsilHp.png") no-repeat scroll 0 0 transparent; border-radius: 3px 3px 3px 3px; height: 0; margin: 0; padding: 16px 0 0 16px; position: absolute; right: 12px; top: 14px; width: 0; } #mal_cs_listinfo { background-image: url("http://i.imgur.com/UXZxrWI.png"); right: 106px; } #mal_cs_listinfo:hover { background-image: url("http://i.imgur.com/VcVVnod.png"); } #mal_cs_links { background-image: url("http://i.imgur.com/LpXWTzt.png"); right: 72px; z-index: 9; } #mal_cs_links:hover { background-image: url("http://i.imgur.com/oPfKrOl.png"); } #mal_cs_otherlinks { background-image: url("http://i.imgur.com/ogmX9qC.png"); right: 38px; z-index: 8; } #mal_cs_otherlinks:hover { background-image: url("http://i.imgur.com/EEGHkbF.png"); } #mal_cs_powered { background-image: url("http://i.imgur.com/ct4BVP5.png"); right: 4px !important; z-index: 7; } #mal_cs_powered:hover { background-image: url("http://i.imgur.com/TUUWtaj.png"); } td#mal_cs_pic a img { display: none; } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { padding: 32px 0 0 !important; } #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { z-index: 10 !important; content: ""; right: 0 !important; top: 0 !important; width: 32px !important; position: absolute !important; border-radius: 4px; } #mal_cs_listinfo:after{ background-image: url(http://i.imgur.com/856wzPZ.png); } #mal_cs_links:after{ background-image: url(http://i.imgur.com/rwvRyux.png); } #mal_cs_otherlinks:after{ background-image: url(http://i.imgur.com/fbWr1K4.png); } #mal_cs_powered:after{ background-image: url(http://i.imgur.com/fKvpt1F.png); } #mal_cs_listinfo:after, #mal_cs_links:after, #mal_cs_otherlinks:after, #mal_cs_powered:after { z-index: 10 !important; content: ""; right: 0 !important; top: 0 !important; width: 32px !important; height: 32px !important; position: absolute !important; } #searchBox { width: 128px !important; margin-left: 1px; } #mal_cs_powered #search #searchListButton { right: 15px !important; top: 12px !important; } @media screen and (-webkit-min-device-pixel-ratio:0) { #searchBox { width: 96px !important; } } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } /* CATEGORY LINKS */ .status_not_selected, .status_selected { border: 0 none !important; height: auto !important; padding: 0 8px; text-align: center !important; width: 16.667% !important; } .status_not_selected a, .status_selected a { background-color: rgba(64, 60, 90, 0.6); border-color: rgba(48, 44, 64, 0.5); border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #FFFFFF; display: block !important; font-weight: bold; padding: 8px; text-shadow: 0 1px rgba(0, 0, 0, 0.1); } .status_selected a { background-color: rgba(180, 32, 48, 0.6); border-color: rgba(164, 16, 32, 0.5); } .status_not_selected a:hover { background-color: #403C5A; border-color: #201C3A; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .status_selected a:hover { background-color: #B42030; border-color: rgba(148, 0, 24, 0.5); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .header_title{ border-radius: 0px 0px 0px 0px; border-style: solid !important; border-width: 0px; border-color: white; } .table_header:nth-of-type(6), td:nth-of-type(6) { border-color: transparent !important; border-style: solid; border-width: 0 2px 0 0 !important; } /* 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 'left' and 'top' other 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 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 bottom 30%; background-size: cover; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i.imgur.com/WiQwOYq.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i.imgur.com/bdVNHXj.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://i.imgur.com/dIA5maf.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://i.imgur.com/lgMeMet.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i.imgur.com/p7N5lFG.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } Thank you in advance! ^^ Did you try the highlighting rows CSS tutorial? That should do the trick if you haven't I did. I tried adding the purple highlight code earlier and it still didn't work >< Worked for me with the code you posted http://myanimelist.net/animelist/Shishio-kun sure you added it to the bottom and saved? Add it and post back if it still doesn't - leave it in your code |
May 21, 2015 5:03 AM
#2802
Shishio-kun said: Corwen said: Shishio-kun said: Corwen said: Hello! I'm here to ask a question again lol XD I can't seem to fix this problem regarding the highlighting when hovered over an anime title. Here's a picture of it: I want it to highlight the entire row and not just one element. It only highlights the list properties individually. Here's the code I'm using: @import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow); @import url(http://fonts.googleapis.com/css?family=Pacifico); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i.imgur.com/KLeZwhx.jpg); 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). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations). */ .header_title { background-color:moccasin; color:black; font-family: 'Pacifico', cursive; font-size:30px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:lightslategray; } /* 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:moccasin; font-family: 'PT Sans Narrow', sans-serif; font-size:16px; } /* 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:white; font-family: 'PT Sans Narrow', sans-serif; font-size:14px; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:680px; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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: center 43%;} /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:moccasin; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } body { background-size: cover; } #list_surround { position: absolute !important; left: 80px !important;} td.table_header:nth-of-type(1), .td1:nth-of-type(1), .td2:nth-of-type(1){ border-color: transparent !important; border-style: solid; border-width: 0 0 0 2px !important; } .table_header:nth-of-type(3), td:nth-of-type(3){ border-color: transparent !important; border-style: solid; border-width: 0 0 0 0 !important; } .category_totals{ border-width: 0 2px 2px 2px !important; border-color: transparent; border-radius: 0 0 25px 25px; border-style: solid !important; } /*PADDING The space around the words in your list. */ .status_selected:hover, .header_title:hover, .td1:hover, #grand_totals:hover, .status_not_selected:hover, .table_header:hover, .category_totals:hover, .td2:hover, #copyright:hover, .status_selected, .header_title, .td1, #grand_totals, .status_not_selected, .table_header, .category_totals, .td2, #copyright{ padding: 8px; } /* COLOR OF THE ICONS Change the color, and adjust the opacity for brighter color. Remove the display: none to match the selected icon to the other icons. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { background: transparent; opacity: .9; } /* BORDER OF ICONS If you're having trouble seeing the border bottom, lower the height by a pixel or two until you see it. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before, #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { border-color: ; border-style: ; border-width: ; height: 32px !important; } /* BUTTONS COLOR AND BORDER Buttons within the hover menus, not the icons themselves. Second code is for button color on hover. */ #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a img{ background-color: rgba(64, 60, 90, 0.6) !important; border-color: transparent; border-style: solid !important; border-width: 1px !important; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover, #mal_cs_powered a img:hover { background-color: #403C5A !important; } /* COLOR OF HOVER MENUS AND SELECTED ICONS Remove display none from the second code to match the colors of the selected icon to the icons above. */ #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd, #mal_cs_powered a { background-color: rgba(255, 255, 255, 0.6) !important; } #mal_cs_listinfo:hover:before, #mal_cs_links:hover:before, #mal_cs_otherlinks:hover:before, #mal_cs_powered:hover:before, #mal_cs_listinfo:hover:after, #mal_cs_links:hover:after, #mal_cs_otherlinks:hover:after, #mal_cs_powered:hover:after { display: none; background-color: ; opacity: .2; } /* COLOR OF USERNAME (for visitors) You don't see this username on the menus when you're logged in, log out to see it. */ #mal_cs_otherlinks strong a { color: #333333 !important; } #mal_cs_otherlinks strong a:hover { color: blue !important; background-color: transparent !important; } /* POSITION OF TOP BAR Change to absolute if you want it to not scroll with the page. */ #mal_control_strip { position: fixed !important; background-color: transparent !important; background-image: url(none) !important; } /* COLOR OF THE ICONS Change the color, and adjust the opacity for brighter color. Remove the display: none to match the selected icon to the other icons. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { background: transparent; opacity: .9; } /* BORDER OF ICONS If you're having trouble seeing the border bottom, lower the height by a pixel or two until you see it. */ #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before, #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { border-color: ; border-style: ; border-width: ; height: 32px !important; } /* BUTTONS COLOR AND BORDER Buttons within the hover menus, not the icons themselves. Second code is for button color on hover. */ #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a img{ background-color: rgba(64, 60, 90, 0.6) !important; border-color: transparent; border-style: solid !important; border-width: 1px !important; } #mal_cs_listinfo a:hover, #mal_cs_links a:hover, #mal_cs_otherlinks a:hover, #mal_cs_powered a img:hover { background-color: #403C5A !important; } /* COLOR OF HOVER MENUS AND SELECTED ICONS Remove display none from the second code to match the colors of the selected icon to the icons above. */ #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd, #mal_cs_powered a { background-color: rgba(255, 255, 255, 0.6) !important; } #mal_cs_listinfo:hover:before, #mal_cs_links:hover:before, #mal_cs_otherlinks:hover:before, #mal_cs_powered:hover:before, #mal_cs_listinfo:hover:after, #mal_cs_links:hover:after, #mal_cs_otherlinks:hover:after, #mal_cs_powered:hover:after { display: none; background-color: ; opacity: .2; } /* COLOR OF USERNAME (for visitors) You don't see this username on the menus when you're logged in, log out to see it. */ #mal_cs_otherlinks strong a { color: #333333 !important; } #mal_cs_otherlinks strong a:hover { color: blue !important; background-color: transparent !important; } /* POSITION OF TOP BAR Change to absolute if you want it to not scroll with the page. */ #mal_control_strip { position: fixed !important; background-color: transparent !important; background-image: url(none) !important; } /* OTHER CODES If you want to change out the icon images themselves, you can scroll down through the codes and find the background images and change them with your own. */ #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { -moz-box-sizing: border-box; transition: all 0.4s ease 0s; background: none no-repeat scroll 100% 0 transparent; border: 0 none; height: 0 !important; overflow: hidden; position: absolute; right: 4px; text-align: center; top: 4px; width: 150px; z-index: 10; } #mal_cs_listinfo:hover, #mal_cs_links:hover, #mal_cs_otherlinks:hover, #mal_cs_powered:hover { height: 200px !important; padding-top: 32px; width: 150px; } #mal_cs_listinfo div, #mal_cs_links div, #mal_cs_otherlinks div, #mal_cs_powered div, #mal_cs_powered dd { transition: opacity 0.4s ease-in-out 0s; border-radius: 3px 0 0 0; font-size: 0 !important; line-height: 0; margin: 0 !important; opacity: 0; padding: 8px 0 0; } #mal_cs_listinfo:hover div, #mal_cs_links:hover div, #mal_cs_otherlinks:hover div, #mal_cs_powered:hover div, #mal_cs_powered:hover dd { opacity: 1; } #mal_cs_listinfo div:nth-of-type(2), #mal_cs_links div:nth-of-type(2), #mal_cs_otherlinks div:nth-of-type(2), #mal_cs_powered div:nth-of-type(2) { border-radius: 0 0 3px 3px; padding: 4px 0 8px; } #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a { background-color: rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; font: 13px/17px arial,sans-serif; margin: 4px 12px 0; padding: 3px 0; text-decoration: none; } #mal_cs_listinfo a:nth-of-type(1), #mal_cs_links a:nth-of-type(1), #mal_cs_otherlinks a:nth-of-type(1), #mal_cs_powered a:nth-of-type(1) { margin-top: 0; } #mal_cs_listinfo strong a strong { font-weight: normal; } #mal_cs_otherlinks strong { color: #333333; display: block; font: bold 13px/17px arial,sans-serif !important; padding: 0 4px 4px; text-shadow: 0 1px 1px #FFFFFF; } #mal_cs_otherlinks strong a { background: none repeat scroll 0 0 transparent !important; border-color: transparent !important; border-radius: 0 0 0 0; color: #333333; display: inline; font: bold 13px/17px arial,sans-serif !important; margin: 0; padding: 0; text-shadow: 0 1px 1px #FFFFFF; } #mal_cs_powered a { border-radius: 3px 0 0 0 !important; display: block !important; margin: 0 !important; opacity: 0; padding: 8px 0 0 !important; } #mal_cs_powered:hover a { opacity: 1; } #mal_cs_powered a img { background: url("http://i.imgur.com/fGTjBC3.png") no-repeat scroll 50% 6px rgba(64, 60, 90, 0.6); border-radius: 3px 3px 3px 3px; display: block; height: 0; margin: 0 12px; padding: 23px 0 0 126px; width: 0; } #mal_cs_powered a img:hover { background-color: #403C5A; } #mal_cs_powered #search { border-radius: 0 0 3px 3px; padding: 8px; position: relative; } #mal_cs_powered #search #searchBox { -moz-box-sizing: border-box; border-color: #BCBCBC #D6D6D6 #D6D6D6; border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #333333; display: inline-block; font-family: arial,sans-serif; font-size: 13px; height: 28px; padding-left: 6px; padding-right: 24px; vertical-align: top; width: 100%; } #mal_cs_powered #search #searchBox:hover, #mal_cs_powered #search #searchBox:focus { border-color: #ACACAC #C6C6C6 #C6C6C6; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; } #mal_cs_powered #search #searchListButton { background: url("http://i.imgur.com/XqsilHp.png") no-repeat scroll 0 0 transparent; border-radius: 3px 3px 3px 3px; height: 0; margin: 0; padding: 16px 0 0 16px; position: absolute; right: 12px; top: 14px; width: 0; } #mal_cs_listinfo { background-image: url("http://i.imgur.com/UXZxrWI.png"); right: 106px; } #mal_cs_listinfo:hover { background-image: url("http://i.imgur.com/VcVVnod.png"); } #mal_cs_links { background-image: url("http://i.imgur.com/LpXWTzt.png"); right: 72px; z-index: 9; } #mal_cs_links:hover { background-image: url("http://i.imgur.com/oPfKrOl.png"); } #mal_cs_otherlinks { background-image: url("http://i.imgur.com/ogmX9qC.png"); right: 38px; z-index: 8; } #mal_cs_otherlinks:hover { background-image: url("http://i.imgur.com/EEGHkbF.png"); } #mal_cs_powered { background-image: url("http://i.imgur.com/ct4BVP5.png"); right: 4px !important; z-index: 7; } #mal_cs_powered:hover { background-image: url("http://i.imgur.com/TUUWtaj.png"); } td#mal_cs_pic a img { display: none; } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_powered { padding: 32px 0 0 !important; } #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before { z-index: 10 !important; content: ""; right: 0 !important; top: 0 !important; width: 32px !important; position: absolute !important; border-radius: 4px; } #mal_cs_listinfo:after{ background-image: url(http://i.imgur.com/856wzPZ.png); } #mal_cs_links:after{ background-image: url(http://i.imgur.com/rwvRyux.png); } #mal_cs_otherlinks:after{ background-image: url(http://i.imgur.com/fbWr1K4.png); } #mal_cs_powered:after{ background-image: url(http://i.imgur.com/fKvpt1F.png); } #mal_cs_listinfo:after, #mal_cs_links:after, #mal_cs_otherlinks:after, #mal_cs_powered:after { z-index: 10 !important; content: ""; right: 0 !important; top: 0 !important; width: 32px !important; height: 32px !important; position: absolute !important; } #searchBox { width: 128px !important; margin-left: 1px; } #mal_cs_powered #search #searchListButton { right: 15px !important; top: 12px !important; } @media screen and (-webkit-min-device-pixel-ratio:0) { #searchBox { width: 96px !important; } } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } /* CATEGORY LINKS */ .status_not_selected, .status_selected { border: 0 none !important; height: auto !important; padding: 0 8px; text-align: center !important; width: 16.667% !important; } .status_not_selected a, .status_selected a { background-color: rgba(64, 60, 90, 0.6); border-color: rgba(48, 44, 64, 0.5); border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #FFFFFF; display: block !important; font-weight: bold; padding: 8px; text-shadow: 0 1px rgba(0, 0, 0, 0.1); } .status_selected a { background-color: rgba(180, 32, 48, 0.6); border-color: rgba(164, 16, 32, 0.5); } .status_not_selected a:hover { background-color: #403C5A; border-color: #201C3A; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .status_selected a:hover { background-color: #B42030; border-color: rgba(148, 0, 24, 0.5); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .header_title{ border-radius: 0px 0px 0px 0px; border-style: solid !important; border-width: 0px; border-color: white; } .table_header:nth-of-type(6), td:nth-of-type(6) { border-color: transparent !important; border-style: solid; border-width: 0 2px 0 0 !important; } /* 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 'left' and 'top' other 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 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 bottom 30%; background-size: cover; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i.imgur.com/WiQwOYq.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i.imgur.com/bdVNHXj.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://i.imgur.com/dIA5maf.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://i.imgur.com/lgMeMet.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i.imgur.com/p7N5lFG.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } Thank you in advance! ^^ Did you try the highlighting rows CSS tutorial? That should do the trick if you haven't I did. I tried adding the purple highlight code earlier and it still didn't work >< Worked for me with the code you posted http://myanimelist.net/animelist/Shishio-kun sure you added it to the bottom and saved? Add it and post back if it still doesn't - leave it in your code I tried it again and noticed that the first time I clicked save the codes didn't show up when the page refreshed. Tried to paste it the second time and now it works. That was weird >< Sorry I didn't notice it earlier. Thanks so much for the help, Shishio-kun! ^^ |
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines. |
May 21, 2015 6:57 AM
#2803
Corwen said: I tried it again and noticed that the first time I clicked save the codes didn't show up when the page refreshed. Tried to paste it the second time and now it works. That was weird >< Sorry I didn't notice it earlier. Thanks so much for the help, Shishio-kun! ^^ np, great work on ur list and signature |
May 21, 2015 7:15 AM
#2804
Shishio-kun said: Corwen said: I tried it again and noticed that the first time I clicked save the codes didn't show up when the page refreshed. Tried to paste it the second time and now it works. That was weird >< Sorry I didn't notice it earlier. Thanks so much for the help, Shishio-kun! ^^ np, great work on ur list and signature Thank you! Your tutorials helped me a lot :D |
Signature removed. Please follow the signature rules, as defined in the Site & Forum Guidelines. |
May 22, 2015 12:55 AM
#2806
Hello there! I've got next problem - something wrong with the header, the only thing i changed was background image. I use this layout - http://myanimelist.net/forum/?topicid=412713&show=0 Also checked all image links- nothing broken http://i.imgur.com/Or0Lbm5.png |
May 22, 2015 7:12 AM
#2807
Menius said: Hello there! I've got next problem - something wrong with the header, the only thing i changed was background image. I use this layout - http://myanimelist.net/forum/?topicid=412713&show=0 Also checked all image links- nothing broken http://i.imgur.com/Or0Lbm5.png Post the layout code with the problem. Like the version you have post-editing. When I simply change the background image, I don't see the same problem at all. |
May 22, 2015 8:08 AM
#2808
Shishio-kun said: Post the layout code with the problem. Like the version you have post-editing. When I simply change the background image, I don't see the same problem at all. Here you go body { background-attachment:fixed; background-color: #000; background-repeat: no-repeat; font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; background-size: cover; -moz-background-size: cover; } #list_surround { margin: -25px auto 0; width: 950px; } .table_header { border-bottom: 0px !important; border-style: solid; border-width: 1px 1px 0px 0px; padding: 2px; } .td1, .td2 { border-style: solid; border-width: 1px 1px 0 0; padding: 2px; } * { -o-transition: background-color .2s linear; -moz-transition: background-color .2s linear; -webkit-transition: background-color .2s linear; transition: background-color .2s linear; } .td1 a + small:before, .td2 a + small:before{ content:'('; } .td1 a + small:after, .td2 a + small:after { content:')'; } .borderRBL { border-width: 1px 1px 0 36px !important; } .header_title { color: transparent; content: none; height: 60px; margin-bottom: 5px; margin-left: auto; margin-right: auto; margin-top: 25px; width: 520px; } .header_cw{ background-position: 0px 0px; } .header_completed{ background-position: 0px -60px; } .header_onhold{ background-position: 0px -120px; } .header_dropped{ background-position: 0px -240px; } .header_ptw{ background-position: 0px -180px; } .category_totals { padding-left: 37px !important; padding: 2px; border: solid 1px; } #grand_totals { text-align: center; display: block; padding: 5px; } #copyright { margin-bottom: 40px; padding: 2px; border: 1px solid; } #copyright br { display:none; } #list_surround:first-of-type[align="center"] { bottom: 0; margin-left: -50px; position: fixed; width: 1000px; } #list_surround:first-of-type[align="center"]{ background-color: transparent; border-width: 0 !important; } .status_not_selected, .status_selected { border-width: 0 !important; padding: 0 !important; width: auto !important; } .status_not_selected a, .status_selected a { color: transparent !important; content: none; display: block; height: 30px; width: 150px; } .status_not_selected a[href*="status=1"],.status_selected a[href*="status=1"],.status_not_selected a[href*="status=7"], .status_selected a[href*="status=7"]{ width: 200px; } .status_not_selected a[href*="status=1"]{background-position: 0px 0px} .status_not_selected a[href*="status=1"]:hover{background-position: 0px 30px} .status_not_selected a[href*="status=1"]:active, .status_selected a[href*="status=1"]{background-position: 0px 60px} .status_not_selected a[href*="status=2"]{background-position: -200px 0px} .status_not_selected a[href*="status=2"]:hover{background-position: -200px 30px} .status_not_selected a[href*="status=2"]:active, .status_selected a[href*="status=2"]{background-position: -200px 60px} .status_not_selected a[href*="status=3"]{background-position: -350px 0px} .status_not_selected a[href*="status=3"]:hover{background-position: -350px 30px} .status_not_selected a[href*="status=3"]:active, .status_selected a[href*="status=3"]{background-position: -350px 60px} .status_not_selected a[href*="status=4"]{background-position: -500px 0px} .status_not_selected a[href*="status=4"]:hover{background-position: -500px 30px} .status_not_selected a[href*="status=4"]:active, .status_selected a[href*="status=4"]{background-position: -500px 60px} .status_not_selected a[href*="status=6"]{background-position: -650px 0px} .status_not_selected a[href*="status=6"]:hover{background-position: -650px 30px} .status_not_selected a[href*="status=6"]:active, .status_selected a[href*="status=6"]{background-position: -650px 60px} .status_not_selected a[href*="status=7"]{background-position: -800px 0px} .status_not_selected a[href*="status=7"]:hover{background-position: -800px 30px} .status_not_selected a[href*="status=7"]:active, .status_selected a[href*="status=7"]{background-position: -800px 60px} # {background-color: transparent !important;background-image: url('http://omydcny.ojqwi2llmfwc44tv.dresk.ru/i425/1203/8e/8a32093af242.png') !important;position:fixed;top: 0;} #{height: 24px !important; border-right-color: rgba(0,0,0,0.8) !important;} #{display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo {width: auto !important} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links {width: 90px !important} #mal_cs_links a {background-image: url('http://omydami.ojqwi2llmfwc44tv.dresk.ru/i194/1203/95/6168af5601c9.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: -2px !important; width: 135px !important} body{ background-image: url("http://i.imgur.com/vK1NamZ.jpg"); background-position: 60% 18%; font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ color: #FFF; text-decoration: none; } .table_headerLink:hover{ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } .td1 a, .td2 a{ text-decoration: none; color: #ffc700; } .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} .header_title{ background-image: url([url=http://i.imgur.com/VImNB.png]http://i.imgur.com/VImNB.png); } .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti. Background edit by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } #copyright, #copyright a{ color: #FFF; } .status_not_selected a, .status_selected a{ background-image: url('http://i.imgur.com/rSgqF.png'); } |
May 22, 2015 8:52 AM
#2809
Menius said: Shishio-kun said: Post the layout code with the problem. Like the version you have post-editing. When I simply change the background image, I don't see the same problem at all. Here you go body { background-attachment:fixed; background-color: #000; background-repeat: no-repeat; font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; background-size: cover; -moz-background-size: cover; } #list_surround { margin: -25px auto 0; width: 950px; } .table_header { border-bottom: 0px !important; border-style: solid; border-width: 1px 1px 0px 0px; padding: 2px; } .td1, .td2 { border-style: solid; border-width: 1px 1px 0 0; padding: 2px; } * { -o-transition: background-color .2s linear; -moz-transition: background-color .2s linear; -webkit-transition: background-color .2s linear; transition: background-color .2s linear; } .td1 a + small:before, .td2 a + small:before{ content:'('; } .td1 a + small:after, .td2 a + small:after { content:')'; } .borderRBL { border-width: 1px 1px 0 36px !important; } .header_title { color: transparent; content: none; height: 60px; margin-bottom: 5px; margin-left: auto; margin-right: auto; margin-top: 25px; width: 520px; } .header_cw{ background-position: 0px 0px; } .header_completed{ background-position: 0px -60px; } .header_onhold{ background-position: 0px -120px; } .header_dropped{ background-position: 0px -240px; } .header_ptw{ background-position: 0px -180px; } .category_totals { padding-left: 37px !important; padding: 2px; border: solid 1px; } #grand_totals { text-align: center; display: block; padding: 5px; } #copyright { margin-bottom: 40px; padding: 2px; border: 1px solid; } #copyright br { display:none; } #list_surround:first-of-type[align="center"] { bottom: 0; margin-left: -50px; position: fixed; width: 1000px; } #list_surround:first-of-type[align="center"]{ background-color: transparent; border-width: 0 !important; } .status_not_selected, .status_selected { border-width: 0 !important; padding: 0 !important; width: auto !important; } .status_not_selected a, .status_selected a { color: transparent !important; content: none; display: block; height: 30px; width: 150px; } .status_not_selected a[href*="status=1"],.status_selected a[href*="status=1"],.status_not_selected a[href*="status=7"], .status_selected a[href*="status=7"]{ width: 200px; } .status_not_selected a[href*="status=1"]{background-position: 0px 0px} .status_not_selected a[href*="status=1"]:hover{background-position: 0px 30px} .status_not_selected a[href*="status=1"]:active, .status_selected a[href*="status=1"]{background-position: 0px 60px} .status_not_selected a[href*="status=2"]{background-position: -200px 0px} .status_not_selected a[href*="status=2"]:hover{background-position: -200px 30px} .status_not_selected a[href*="status=2"]:active, .status_selected a[href*="status=2"]{background-position: -200px 60px} .status_not_selected a[href*="status=3"]{background-position: -350px 0px} .status_not_selected a[href*="status=3"]:hover{background-position: -350px 30px} .status_not_selected a[href*="status=3"]:active, .status_selected a[href*="status=3"]{background-position: -350px 60px} .status_not_selected a[href*="status=4"]{background-position: -500px 0px} .status_not_selected a[href*="status=4"]:hover{background-position: -500px 30px} .status_not_selected a[href*="status=4"]:active, .status_selected a[href*="status=4"]{background-position: -500px 60px} .status_not_selected a[href*="status=6"]{background-position: -650px 0px} .status_not_selected a[href*="status=6"]:hover{background-position: -650px 30px} .status_not_selected a[href*="status=6"]:active, .status_selected a[href*="status=6"]{background-position: -650px 60px} .status_not_selected a[href*="status=7"]{background-position: -800px 0px} .status_not_selected a[href*="status=7"]:hover{background-position: -800px 30px} .status_not_selected a[href*="status=7"]:active, .status_selected a[href*="status=7"]{background-position: -800px 60px} # {background-color: transparent !important;background-image: url('http://omydcny.ojqwi2llmfwc44tv.dresk.ru/i425/1203/8e/8a32093af242.png') !important;position:fixed;top: 0;} #{height: 24px !important; border-right-color: rgba(0,0,0,0.8) !important;} #{display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo {width: auto !important} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links {width: 90px !important} #mal_cs_links a {background-image: url('http://omydami.ojqwi2llmfwc44tv.dresk.ru/i194/1203/95/6168af5601c9.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: -2px !important; width: 135px !important} body{ background-image: url("http://i.imgur.com/vK1NamZ.jpg"); background-position: 60% 18%; font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ color: #FFF; text-decoration: none; } .table_headerLink:hover{ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } .td1 a, .td2 a{ text-decoration: none; color: #ffc700; } .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} .header_title{ background-image: url([url=http://i.imgur.com/VImNB.png]http://i.imgur.com/VImNB.png); } .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti. Background edit by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } #copyright, #copyright a{ color: #FFF; } .status_not_selected a, .status_selected a{ background-image: url('http://i.imgur.com/rSgqF.png'); } that code is way different than the layouts on that topic page. There were two links at the top that are gone, and it appears the CSS those links contain has been added to the original layout. But these codes are only supposed to be linked (imported) through the top two lines in the original layout code. They are not meant to be manually added with the rest of the codes in the MAL CSS edit box, or else it causes these errors. The easiest solution is to get rid of this code and copy the layout from the topic to your CSS edit box, then simply change your background there to the one you want. ex: @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the table * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the table */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text in tables bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the table layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti. Background edit by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/rSgqF.png]http://i.imgur.com/rSgqF.png'); } /* upd 1th March 2012*/ /* upd 20th December 2012 import links rehosted, images rehosted*/ |
May 22, 2015 9:20 AM
#2810
Shishio-kun said: There were two links at the top that are gone, and it appears the CSS those links contain has been added to the original layout [/quote] Yes, i fixed that. I thought i need to link and copy and paste text into CSS editor. Still have question - header not the same as in the samlpe http://i.imgur.com/DwWrKZG.png |
May 22, 2015 9:44 AM
#2811
like before you need to post the code you're trying to use, or have it on your layout, so we can see the problem. Your current layout is default Are you using the code I posted in the spoiler? its the layout with the background you're trying to use. When I use it on my list I see everything as its supposed to be. |
May 22, 2015 10:15 AM
#2812
Shishio-kun said: Are you using the code I posted in the spoiler? Yes, i copied it whole and paste into my css editor. @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti. Background edit by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/rSgqF.png]http://i.imgur.com/rSgqF.png'); } /* upd 1th March 2012*/ /* upd 20th December 2012 import links rehosted, images rehosted*/ |
May 22, 2015 10:55 AM
#2813
Menius said: Shishio-kun said: Are you using the code I posted in the spoiler? Yes, i copied it whole and paste into my css editor. @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti. Background edit by Shishio-kun. Google 'Shishio's Custom Lists' for more designs and info."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/rSgqF.png]http://i.imgur.com/rSgqF.png'); } /* upd 1th March 2012*/ /* upd 20th December 2012 import links rehosted, images rehosted*/ Ah your list looks fine now. But if you're still not seeing the top bar as you should, like in the example pic you posted, then something on your com or browser (extension, userscript, etc) is blocking imports of github or something like that. It happens sometimes. You can maybe fix those so they don't do that, but also you could try this version of the same top bar: http://pasted.co/3b62c093 the code on that page is one you can copy into your CSS box underneath your layout code. Its not exactly the same codes and using an import would be better, but this should give you the exact same topbar look |
May 22, 2015 11:17 AM
#2814
Shishio-kun said: Its not exactly the same codes and using an import would be better, but this should give you the exact same topbar look Yeah, this worked) And another question - how can i set the transparency at topbar? Because one from your link is whole black. Also i would like to move list on the right side - it is possible since "watching" and etc are located at center? |
May 22, 2015 11:44 AM
#2815
Another problem appeared. I wanted to make animated GIF-intro to all of my category pages, but when I put the code for it, my category banners are cut. I was looking for something in code, which can be connected to it, but I failed. I'm not so good at it yet. So i want some help again. My code: @import url(http://storage.live.com/items/4A07C1EEED420167%21161); @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* 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:white; font-family:Verdana, Arial; font-size:11px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:rgba(0, 0, 0, 0.7); color:#ffffff; font-family:Verdana, Arial; font-size:11px; } /* 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:#25b800; font-family:Verdana, Arial; font-size:11px; } /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i60.tinypic.com/2lxw0o3.png); background-attachment: fixed; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:red; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } #list_surround .status_selected, #list_surround .status_not_selected { border:1px solid #ffffff !important;} #list_surround { position: absolute !important; margin: auto !important; right: 100px !important; left: 0px !important;} #list_surround .status_selected, #list_surround .status_not_selected { -webkit-background-clip:padding-box !important; background-clip:padding-box !important; background-color:transparent; background-image:url(http://i61.tinypic.com/ve3e54.png); background-position:0 2px; background-repeat:no-repeat no-repeat; background-size:contain; border:1px solid #ffffff; border-bottom-left-radius:10px; border-bottom-right-radius:10px; border-top-left-radius:10px; border-top-right-radius:10px; display:block; left:20px; margin-top:-100px; padding-bottom:0; padding-left:0; padding-right:0; position:fixed; top:150px; width:300px; } #list_surround .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected { background-image:url(http://i58.tinypic.com/2v11cts.png); background-position:0 2px; top:250px; } #list_surround .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i62.tinypic.com/j0bmf9.png); background-position:0 2px; top:350px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i61.tinypic.com/10mob9d.png); background-position:0 2px; top:450px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i57.tinypic.com/16lii4z.png); background-position:0 2px; top:550px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i59.tinypic.com/2myyw6h.png); background-position:0 2px; top:650px; } .status_selected a, .status_not_selected a, .status_selected:hover a, .status_not_selected:hover a { color:transparent; display:block; font-size:0; height:75px; width:300px; } /* list positioning */ #list_surround { position: left !important; padding-left: 20px !important; width: 500px; } .td1 { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5) !important; color:#25b800; font-family:Verdana, Arial; font-size:11px; } .td2 { background: none repeat scroll 0 0 rgba(13, 13, 13, 0.5) !important; color:#25b800; font-family:Verdana, Arial; font-size:11px; } .category_totals { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } #grand_totals { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } #copyright { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } /* Top */ .table_header { border-color: #105200; border-style: solid; border-width: 1px 0 0 !important; } /* Top sides */ td.table_header:first-of-type { border-color: #105200; border-style: solid; border-width: 1px 0 0 1px !important; } td.table_header:last-of-type { border-color:#105200; border-style: solid; border-width: 1px 1px 0 0 !important; } /* Sides of list (anime/manga entries) */ .td1:first-of-type, .td2:first-of-type { border-color: #105200; border-style: solid; border-width: 0 0 0 1px !important; } .td1:last-of-type, .td2:last-of-type { border-color: #105200; border-style: solid; border-width: 0 1px 0 0 !important; } /* Bottom and bottom sides */ .category_totals { border-color: #105200; border-style: solid; border-width: 0 1px 1px !important; } /* Others at bottom */ #grand_totals, #copyright { border-color: #105200; border-style: solid; border-width: 1px !important; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i61.tinypic.com/14wajch.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i59.tinypic.com/2ur5cet.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://oi58.tinypic.com/20rqtn7.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://oi62.tinypic.com/r7nq4h.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i58.tinypic.com/ixuwle.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the actual section by changing the numbers after the top and left codes. Resize the pic with the px amount after background-size:. It will resize the actual cover pic! Adjust the surrounding colored area with the px amounts after padding. Height and width can do this too. Change the position of the cover pic with the % amounts after background-position. Its by default set to be 50% to the left (centered horizontally) and 50% from the top (centered vertically). Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-color: rgba(197, 222, 111, 0.9); background-position: 50% 50% !important; background-repeat: no-repeat !important; border-color: black; border-style: solid; border-width: 1px; display: block !important; height: 140px; right: 30px; position: fixed; bottom: 30px; width: 115px; padding: 79px 40px 10px 10px; background-size: 143px !important; visibility: hidden; opacity: 0; } /* PREVIEW MSG ABOVE COVERS Remove content: "preview"; to remove the PREVIEW text. Change the text in quotations after content to what you want it to say above your cover pic. Top and width controls the position of the text. */ .hide:before { background: none repeat scroll 0 0 transparent; border-radius: 25px 25px 0 0; color: white; #list_surround:nth-of-type(n+4):hover td:nth-of-type(2) .animetitle; padding-bottom: 5px; position: absolute; text-align: center; top: 0px; width: 250px; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /****************************/ /* Aqua Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(197, 239, 111, 0.9) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* ANIMATED INTRO (GIF-style, same for all category pages) The first set of codes is for the background seen behind the animations. The second set is for the left side of the animated intro. It has a custom image, a logo (Yui Nakamura by default) made at cooltext.com. Content code changes the message below that font. The third set controls the image on the right (animated Angel Beats GIF by default). Background position and background size changes the area covered, position, and size of the images used in the second and third set. */ .header_cw:before{ background-image: url("http://i.imgur.com/siL9m0H.jpg"); background-color: black; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: right bottom; height: 100% !important; left: 0 !important; position: fixed !important; top: 0 !important; width: 100% !Important; z-index: 101; color: transparent; content: ""; pointer-events: none; opacity: 0; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:before{ background: transparent url("http://i.imgur.com/Y91tQfV.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my list" !important; color: black !important; font-size: 32px !important; font-family: Century Gothic; text-shadow: 1px 2px 3px white; padding-top: 15%; position: fixed; text-align: center; height: 100%; width: 45%; top: 0 !important; left: 0 !important; pointer-events: none; opacity: 0; z-index: 110 !Important; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:after { background: transparent url("http://i.imgur.com/UmC41Sf.gif") no-repeat; background-position: 50% 10%; background-size: 80%; content: ""; color: black !important; font-size: 32px !important; padding-top: 20%; position: fixed; height: 100%; width: 45%; right: 0 !important; top: 0 !important; z-index: 110; pointer-events: none; opacity: 0; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } @-moz-keyframes mymove /* Firefox */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } @-webkit-keyframes mymove /* Safari and Chrome */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } You can see, what I mean on my anime list now. Thank you in advance. Cheers. ;) |
May 22, 2015 12:21 PM
#2816
Hello! I'm doing okay so far, until I realized that the "#, Anime Title, Score, Type, Progress" of the rest of them except for "Watching" ones are moving when I hover them. You may check them here. Here are my codes. @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://dl.dropboxusercontent.com/u/78192465/MyAnimeList/CSS/TopMenu/TopMenu.css); @import url(http://dl.dropboxusercontent.com/u/78192465/MyAnimeList/CSS/TopMenu/Colors/Gray.css); /* // Self-explanatory */ BODY { color: #acacac; font-size: 10px; font-family: calibri; background-color: #f1f1f1; background-image: url('http://s5.postimage.org/btk1qjn1z/mal_02.png'); letter-spacing: 1px; text-transform: normal; } /* // Determines the positioning of your list */ #list_surround { position: absolute !important; left: 4px !important; width: 700px; } /* // All links on your list */ a { color: #46BBBB; text-decoration: none; font-weight: normal; } a:visited { color: #46BBBB; text-decoration: none; } a:hover { color: #46BBBB; text-decoration: none; } /* // Alternating row color 1 */ .td1 { color: #acacac; border-width: 0px; border-style: solid; border-color: #f6f6f6; padding: 5px; background-color: #f6f6f6; font-weight: normal; } /* // Alternating row color 2 */ .td2 { color: #acacac; border-width: 0px; border-style: solid; border-color: #fdfdfd; padding: 5px; background-color: #fdfdfd; } /* // This represents the "Anime Title", "Score", "# Eps" columns */ .table_header { color: #46BBBB; border-width: 0px; background-color: #46BBBB; padding: 5px; text-align: center; text-transform: uppercase; letter-spacing: 2px; } /* // headerLink represents the color of the links inside the_header */ .table_headerLink { color: #ffffff; } .table_headerLink:Visited { color: #ffffff; } .table_headerLink:Hover { color: #ffffff; } /* // Controls the select form decoration (the drop down select box) */ .form { border-width: ; border-color: ; border-style: ; color: ; padding: ; font-size: px; font-family: ; } /* Which 'status' up top is selected? */ .status_selected { color: #acacac; font-weight: bold; padding: 8px; background-color: #fdfdfd; font-family: Palatino; font-size: 8px; text-transform: uppercase; margin-left: 5px; } .status_selected a { color: #acacac; text-decoration: line-through; } .status_selected a:hover { color: #46BBBB; } .status_not_selected { color: #acacac; font-weight: bold; padding: 8px; background-color: #fdfdfd; font-family: Palatino; font-size: 8px; text-transform: uppercase; margin-left: 5px; } .status_not_selected a { color: #acacac; } .status_not_selected a:hover { color: #46BBBB; } /* Header classes for Currently Watching, Completed, Dropped, etc... */ .header_title { font-family: Palatino; font-size: 40px; color: #46BBBB; font-weight: normal; text-transform: uppercase; letter-spacing: -3px; text-align: center; padding-bottom: 5px; margin-top: 15px; } .category_totals { } #grand_totals { text-align: center; } /* header_al is thesurrounding "User's Anime List" at the top */ .header_al { font-weight: bold; font-size: 16px; } /* header_al_links is thewith your "Profile" and "MyAnimeList home" links */ .header_al_links { } /* controls what styles you can give to all the anime titles in your list */ .animetitle { font-weight: normal; } /* copyright contains the "Producted by Garrett Gyssler" text DO NOT REMOVE OR HIDE THIS DIV IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO */ #copyright { padding-top: 6px; text-align: center; margin: 0 auto; width: px; } /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS). Left and top adjust the position it appears on screen. Control the height and width of the pic with height and width. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. */ .hide { background-size: cover; left: 780px; top: 100px; height: 230px; width: 180px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* PREVIEW MSG ABOVE COVERS Remove content: "preview"; to remove the PREVIEW text. Change the text in quotations after content to what you want it to say above your cover pic. Top and width controls the position of the text. */ .hide:before { background: transparent; color: white; padding-bottom: 5px; position: absolute; text-align: center; width: 150px; top: -25px; border-radius: 25px 25px 0 0; } /* MINI REVIEW (HOVER TAG) Move the area around with the left and top codes. Adjust the surrounding area of the tags by adjusting the padding. Control the height and width of the section with the height and width codes. If your tags/mini-reviews aren't hovering correctly or you need help understanding or adjusting the background color code, see the bottom of the original tutorial: http://myanimelist.net/forum/?topicid=563993 */ td[class^='td']:nth-of-type(6) { visibility: hidden; opacity: 0; position: fixed; top: 340px; left: 780px; background-color: rgba(224, 224, 224, 0.75) !important; border-color: white; border-radius: 25px 25px 25px 25px; border-style: solid; border-width: 1px; font-size: 10px; height: 50px; width: 180px; padding: 12px 12px 0px 12px; color: white !important; z-index: 1; } /* TAG TEXT COLOR*/ tr:hover td[class^='td']:nth-of-type(6) a { color: rgba(70, 187, 187, 0.75) !important; } /* OTHER SETTINGS */ :hover + .hide , tr:hover td[class^='td']:nth-of-type(6){ visibility: visible; opacity: 1; } /* REMOVE HEADER Deletes the header Tags which isn't necessary. */ .table_header:nth-of-type(6) { display: none; } /* REMOVE TAG EDIT BUTTON Deletes the Tag's edit link which will is inaccessible with this setup, use the edit button by Animetitle to edit your tags. */ td:nth-of-type(6) small { display: none; } /* GOOGLE CHROME FIX Adjust this amount 50px at a time if your columns are uneven in Chrome. */ @media screen and (-webkit-min-device-pixel-ratio:0) { td[class^='td']:nth-of-type(2) { width: 470px !important;} } /****************************/ /* Silver highlight and font resize on Hover */ /****************************/ tr:hover [class^="td"] { background-color: rgba(224, 224, 224, 0.75) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } Thank you in advance! and it's 3:30AM here i need to sleep |
set made by tsudecimo ★ i m a d g m t r a s h ★ pnch ★ blc ★ mal rewrite |
May 22, 2015 7:28 PM
#2817
Menius said: Shishio-kun said: Its not exactly the same codes and using an import would be better, but this should give you the exact same topbar look Yeah, this worked) And another question - how can i set the transparency at topbar? Because one from your link is whole black. Also i would like to move list on the right side - it is possible since "watching" and etc are located at center? Both are possible. In the topbar's code there's instructions to lighten the bar, and there's a tutorial for moving your list in the long list of CSS tutorials http://myanimelist.net/forum/?topicid=419405 |
May 22, 2015 9:59 PM
#2818
Hanler said: Another problem appeared. I wanted to make animated GIF-intro to all of my category pages, but when I put the code for it, my category banners are cut. I was looking for something in code, which can be connected to it, but I failed. I'm not so good at it yet. So i want some help again. My code: @import url(http://storage.live.com/items/4A07C1EEED420167%21161); @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* 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:white; font-family:Verdana, Arial; font-size:11px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:rgba(0, 0, 0, 0.7); color:#ffffff; font-family:Verdana, Arial; font-size:11px; } /* 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:#25b800; font-family:Verdana, Arial; font-size:11px; } /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i60.tinypic.com/2lxw0o3.png); background-attachment: fixed; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:red; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } #list_surround .status_selected, #list_surround .status_not_selected { border:1px solid #ffffff !important;} #list_surround { position: absolute !important; margin: auto !important; right: 100px !important; left: 0px !important;} #list_surround .status_selected, #list_surround .status_not_selected { -webkit-background-clip:padding-box !important; background-clip:padding-box !important; background-color:transparent; background-image:url(http://i61.tinypic.com/ve3e54.png); background-position:0 2px; background-repeat:no-repeat no-repeat; background-size:contain; border:1px solid #ffffff; border-bottom-left-radius:10px; border-bottom-right-radius:10px; border-top-left-radius:10px; border-top-right-radius:10px; display:block; left:20px; margin-top:-100px; padding-bottom:0; padding-left:0; padding-right:0; position:fixed; top:150px; width:300px; } #list_surround .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected { background-image:url(http://i58.tinypic.com/2v11cts.png); background-position:0 2px; top:250px; } #list_surround .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i62.tinypic.com/j0bmf9.png); background-position:0 2px; top:350px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i61.tinypic.com/10mob9d.png); background-position:0 2px; top:450px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i57.tinypic.com/16lii4z.png); background-position:0 2px; top:550px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i59.tinypic.com/2myyw6h.png); background-position:0 2px; top:650px; } .status_selected a, .status_not_selected a, .status_selected:hover a, .status_not_selected:hover a { color:transparent; display:block; font-size:0; height:75px; width:300px; } /* list positioning */ #list_surround { position: left !important; padding-left: 20px !important; width: 500px; } .td1 { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5) !important; color:#25b800; font-family:Verdana, Arial; font-size:11px; } .td2 { background: none repeat scroll 0 0 rgba(13, 13, 13, 0.5) !important; color:#25b800; font-family:Verdana, Arial; font-size:11px; } .category_totals { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } #grand_totals { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } #copyright { background: none repeat scroll 0 0 rgba(0, 50, 0, 0.5) !important; color:#ffffff; font-family:Verdana, Arial; font-size:11px; } /* Top */ .table_header { border-color: #105200; border-style: solid; border-width: 1px 0 0 !important; } /* Top sides */ td.table_header:first-of-type { border-color: #105200; border-style: solid; border-width: 1px 0 0 1px !important; } td.table_header:last-of-type { border-color:#105200; border-style: solid; border-width: 1px 1px 0 0 !important; } /* Sides of list (anime/manga entries) */ .td1:first-of-type, .td2:first-of-type { border-color: #105200; border-style: solid; border-width: 0 0 0 1px !important; } .td1:last-of-type, .td2:last-of-type { border-color: #105200; border-style: solid; border-width: 0 1px 0 0 !important; } /* Bottom and bottom sides */ .category_totals { border-color: #105200; border-style: solid; border-width: 0 1px 1px !important; } /* Others at bottom */ #grand_totals, #copyright { border-color: #105200; border-style: solid; border-width: 1px !important; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i61.tinypic.com/14wajch.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i59.tinypic.com/2ur5cet.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://oi58.tinypic.com/20rqtn7.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://oi62.tinypic.com/r7nq4h.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i58.tinypic.com/ixuwle.jpg); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover). Move the actual section by changing the numbers after the top and left codes. Resize the pic with the px amount after background-size:. It will resize the actual cover pic! Adjust the surrounding colored area with the px amounts after padding. Height and width can do this too. Change the position of the cover pic with the % amounts after background-position. Its by default set to be 50% to the left (centered horizontally) and 50% from the top (centered vertically). Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. For changing the original background color see the bottom of the original post: http://myanimelist.net/forum/?topicid=563993 */ .hide { background-color: rgba(197, 222, 111, 0.9); background-position: 50% 50% !important; background-repeat: no-repeat !important; border-color: black; border-style: solid; border-width: 1px; display: block !important; height: 140px; right: 30px; position: fixed; bottom: 30px; width: 115px; padding: 79px 40px 10px 10px; background-size: 143px !important; visibility: hidden; opacity: 0; } /* PREVIEW MSG ABOVE COVERS Remove content: "preview"; to remove the PREVIEW text. Change the text in quotations after content to what you want it to say above your cover pic. Top and width controls the position of the text. */ .hide:before { background: none repeat scroll 0 0 transparent; border-radius: 25px 25px 0 0; color: white; #list_surround:nth-of-type(n+4):hover td:nth-of-type(2) .animetitle; padding-bottom: 5px; position: absolute; text-align: center; top: 0px; width: 250px; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; } /****************************/ /* Aqua Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(197, 239, 111, 0.9) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* ANIMATED INTRO (GIF-style, same for all category pages) The first set of codes is for the background seen behind the animations. The second set is for the left side of the animated intro. It has a custom image, a logo (Yui Nakamura by default) made at cooltext.com. Content code changes the message below that font. The third set controls the image on the right (animated Angel Beats GIF by default). Background position and background size changes the area covered, position, and size of the images used in the second and third set. */ .header_cw:before{ background-image: url("http://i.imgur.com/siL9m0H.jpg"); background-color: black; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: right bottom; height: 100% !important; left: 0 !important; position: fixed !important; top: 0 !important; width: 100% !Important; z-index: 101; color: transparent; content: ""; pointer-events: none; opacity: 0; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:before{ background: transparent url("http://i.imgur.com/Y91tQfV.png") no-repeat; background-position: 50% 10%; background-size: 80%; content: "Presents my list" !important; color: black !important; font-size: 32px !important; font-family: Century Gothic; text-shadow: 1px 2px 3px white; padding-top: 15%; position: fixed; text-align: center; height: 100%; width: 45%; top: 0 !important; left: 0 !important; pointer-events: none; opacity: 0; z-index: 110 !Important; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } .header_cw span:after { background: transparent url("http://i.imgur.com/UmC41Sf.gif") no-repeat; background-position: 50% 10%; background-size: 80%; content: ""; color: black !important; font-size: 32px !important; padding-top: 20%; position: fixed; height: 100%; width: 45%; right: 0 !important; top: 0 !important; z-index: 110; pointer-events: none; opacity: 0; -moz-animation:mymove 5s; /* Firefox */ -webkit-animation:mymove 5s; /* Safari and Chrome */ } @-moz-keyframes mymove /* Firefox */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } @-webkit-keyframes mymove /* Safari and Chrome */ { 0% {opacity: 1} 80% {opacity: 1} 95% {opacity: 0} 99% {opacity: 0} } You can see, what I mean on my anime list now. Thank you in advance. Cheers. ;) This is a Chrome only problem I wasn't aware of- it seems if you add this to the bottom .header_cw, .header_completed, .header_onhold, .header_dropped, .header_ptw{ display: block !important; } it lets you add animated intros without disabling the headers in Chrome |
May 22, 2015 10:26 PM
#2819
xaerbit said: Hello! I'm doing okay so far, until I realized that the "#, Anime Title, Score, Type, Progress" of the rest of them except for "Watching" ones are moving when I hover them. You may check them here. Here are my codes. @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://dl.dropboxusercontent.com/u/78192465/MyAnimeList/CSS/TopMenu/TopMenu.css); @import url(http://dl.dropboxusercontent.com/u/78192465/MyAnimeList/CSS/TopMenu/Colors/Gray.css); /* // Self-explanatory */ BODY { color: #acacac; font-size: 10px; font-family: calibri; background-color: #f1f1f1; background-image: url('http://s5.postimage.org/btk1qjn1z/mal_02.png'); letter-spacing: 1px; text-transform: normal; } /* // Determines the positioning of your list */ #list_surround { position: absolute !important; left: 4px !important; width: 700px; } /* // All links on your list */ a { color: #46BBBB; text-decoration: none; font-weight: normal; } a:visited { color: #46BBBB; text-decoration: none; } a:hover { color: #46BBBB; text-decoration: none; } /* // Alternating row color 1 */ .td1 { color: #acacac; border-width: 0px; border-style: solid; border-color: #f6f6f6; padding: 5px; background-color: #f6f6f6; font-weight: normal; } /* // Alternating row color 2 */ .td2 { color: #acacac; border-width: 0px; border-style: solid; border-color: #fdfdfd; padding: 5px; background-color: #fdfdfd; } /* // This represents the "Anime Title", "Score", "# Eps" columns */ .table_header { color: #46BBBB; border-width: 0px; background-color: #46BBBB; padding: 5px; text-align: center; text-transform: uppercase; letter-spacing: 2px; } /* // headerLink represents the color of the links inside the_header */ .table_headerLink { color: #ffffff; } .table_headerLink:Visited { color: #ffffff; } .table_headerLink:Hover { color: #ffffff; } /* // Controls the select form decoration (the drop down select box) */ .form { border-width: ; border-color: ; border-style: ; color: ; padding: ; font-size: px; font-family: ; } /* Which 'status' up top is selected? */ .status_selected { color: #acacac; font-weight: bold; padding: 8px; background-color: #fdfdfd; font-family: Palatino; font-size: 8px; text-transform: uppercase; margin-left: 5px; } .status_selected a { color: #acacac; text-decoration: line-through; } .status_selected a:hover { color: #46BBBB; } .status_not_selected { color: #acacac; font-weight: bold; padding: 8px; background-color: #fdfdfd; font-family: Palatino; font-size: 8px; text-transform: uppercase; margin-left: 5px; } .status_not_selected a { color: #acacac; } .status_not_selected a:hover { color: #46BBBB; } /* Header classes for Currently Watching, Completed, Dropped, etc... */ .header_title { font-family: Palatino; font-size: 40px; color: #46BBBB; font-weight: normal; text-transform: uppercase; letter-spacing: -3px; text-align: center; padding-bottom: 5px; margin-top: 15px; } .category_totals { } #grand_totals { text-align: center; } /* header_al is thesurrounding "User's Anime List" at the top */ .header_al { font-weight: bold; font-size: 16px; } /* header_al_links is thewith your "Profile" and "MyAnimeList home" links */ .header_al_links { } /* controls what styles you can give to all the anime titles in your list */ .animetitle { font-weight: normal; } /* copyright contains the "Producted by Garrett Gyssler" text DO NOT REMOVE OR HIDE THIS DIV IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO */ #copyright { padding-top: 6px; text-align: center; margin: 0 auto; width: px; } /* COVER AREA The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS). Left and top adjust the position it appears on screen. Control the height and width of the pic with height and width. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away. Increase height and width to make the pics bigger. Delete border-style: solid; to remove the border. */ .hide { background-size: cover; left: 780px; top: 100px; height: 230px; width: 180px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 25px 25px 25px 25px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } /* PREVIEW MSG ABOVE COVERS Remove content: "preview"; to remove the PREVIEW text. Change the text in quotations after content to what you want it to say above your cover pic. Top and width controls the position of the text. */ .hide:before { background: transparent; color: white; padding-bottom: 5px; position: absolute; text-align: center; width: 150px; top: -25px; border-radius: 25px 25px 0 0; } /* MINI REVIEW (HOVER TAG) Move the area around with the left and top codes. Adjust the surrounding area of the tags by adjusting the padding. Control the height and width of the section with the height and width codes. If your tags/mini-reviews aren't hovering correctly or you need help understanding or adjusting the background color code, see the bottom of the original tutorial: http://myanimelist.net/forum/?topicid=563993 */ td[class^='td']:nth-of-type(6) { visibility: hidden; opacity: 0; position: fixed; top: 340px; left: 780px; background-color: rgba(224, 224, 224, 0.75) !important; border-color: white; border-radius: 25px 25px 25px 25px; border-style: solid; border-width: 1px; font-size: 10px; height: 50px; width: 180px; padding: 12px 12px 0px 12px; color: white !important; z-index: 1; } /* TAG TEXT COLOR*/ tr:hover td[class^='td']:nth-of-type(6) a { color: rgba(70, 187, 187, 0.75) !important; } /* OTHER SETTINGS */ :hover + .hide , tr:hover td[class^='td']:nth-of-type(6){ visibility: visible; opacity: 1; } /* REMOVE HEADER Deletes the header Tags which isn't necessary. */ .table_header:nth-of-type(6) { display: none; } /* REMOVE TAG EDIT BUTTON Deletes the Tag's edit link which will is inaccessible with this setup, use the edit button by Animetitle to edit your tags. */ td:nth-of-type(6) small { display: none; } /* GOOGLE CHROME FIX Adjust this amount 50px at a time if your columns are uneven in Chrome. */ @media screen and (-webkit-min-device-pixel-ratio:0) { td[class^='td']:nth-of-type(2) { width: 470px !important;} } /****************************/ /* Silver highlight and font resize on Hover */ /****************************/ tr:hover [class^="td"] { background-color: rgba(224, 224, 224, 0.75) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } Thank you in advance! and it's 3:30AM here i need to sleep Thats also a new error I haven't seen yet. You can find and change REMOVE TABLE HEADER to this, or just add the codes to the bottom tho I don't recommend that /* REMOVE TABLE HEADER Deletes the table header Tags which isn't necessary. */ .table_header:nth-of-type(6) { display: none !important; } |
May 23, 2015 9:05 AM
#2820
It's working. Thank you again! I hope I won't need help anymore. ;) |
May 23, 2015 3:01 PM
#2821
Hello! Only now i noticed, that i missed buttons at the bottom of the list - i tried to copy and paste original layout and still no buttons there. Layout - http://myanimelist.net/forum/?topicid=412713 My code @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/rSgqF.png]http://i.imgur.com/rSgqF.png'); } /* OTHER CODES */ #mal_control_strip { background-position: bottom !important; top: -16px; height: 1px !important;} #mal_control_strip div {display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo { width: 26% !important; height: 0 !important; padding-bottom: 18px !important; padding-top: 27px !important; background: ; position: absolute; top:-5px; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links { width: 92px !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left: 28%; top: -7px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_links a {background-image: url('http://i.imgur.com/PAEW4Q8.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks strong{ width: 25% !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left:28%; margin-left: 130px; top: -5px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px; margin-top: 19px;} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: 15px !important; width: 135px !important} #mal_control_strip img { margin-top: 15px !important; } /* REMOVE LINES FROM MENU BAR */ #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #list_surround { position: absolute !important; right: 1px !important;} #list_surround { margin: -25px auto 0; width: 740px; } #mal_control_strip { background-color: rgba(1,1,1,.5) !important; background-image: url('http://i.imgur.com/hzPJrg4.png') !important; position:fixed; } |
May 25, 2015 5:05 AM
#2822
Menius said: Hello! Only now i noticed, that i missed buttons at the bottom of the list - i tried to copy and paste original layout and still no buttons there. Layout - http://myanimelist.net/forum/?topicid=412713 My code @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/rSgqF.png]http://i.imgur.com/rSgqF.png'); } /* OTHER CODES */ #mal_control_strip { background-position: bottom !important; top: -16px; height: 1px !important;} #mal_control_strip div {display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo { width: 26% !important; height: 0 !important; padding-bottom: 18px !important; padding-top: 27px !important; background: ; position: absolute; top:-5px; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links { width: 92px !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left: 28%; top: -7px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_links a {background-image: url('http://i.imgur.com/PAEW4Q8.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks strong{ width: 25% !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left:28%; margin-left: 130px; top: -5px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px; margin-top: 19px;} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: 15px !important; width: 135px !important} #mal_control_strip img { margin-top: 15px !important; } /* REMOVE LINES FROM MENU BAR */ #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #list_surround { position: absolute !important; right: 1px !important;} #list_surround { margin: -25px auto 0; width: 740px; } #mal_control_strip { background-color: rgba(1,1,1,.5) !important; background-image: url('http://i.imgur.com/hzPJrg4.png') !important; position:fixed; } It disappeared cuz of a little error in the code cuz of the forum. You can add this to fix it /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('http://i.imgur.com/IZoxRNl.png'); } |
May 25, 2015 8:17 AM
#2823
Shishio-kun said: It disappeared cuz of a little error in the code cuz of the forum. You can add this to fix it Thanks a lot, it's works =) |
May 30, 2015 3:47 PM
#2824
May 30, 2015 8:03 PM
#2825
@_@ so many duplicate selectors... Had to change #list_surround to not be position:absolute which allowed the category buttons to be moved to the left and slightly down (I changed it to position:fixed too). @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://storage.live.com/items/4A07C1EEED420167%21150); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i.imgur.com/zm9Yen1.jpg); 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). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations). */ .header_title { background-color:transparent; color:blue; font-family:english111 vivace bt; font-size:48px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:navy; } /* 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:comic Sans MS; font-size:20px; } /* 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:white; font-family:Lucida Grande; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:600px; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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: center 43%;} /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:red; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } .status_selected { background-color:black; padding:2px; color:white; text-decoration: blink; } .status_not_selected { background-color:black; padding:2px; color:white; } .status_selected a{ color:cyan; } .status_not_selected a{ color:white; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } body { background-size: cover; } /* SIDE BUTTONS */ #list_surround .status_selected, #list_surround .status_not_selected { -webkit-background-clip:padding-box !important; background-clip:padding-box !important; background-color:transparent; background-image:url(http://i.imgur.com/Sc2lNEh.png); background-position:0 0; background-repeat:no-repeat no-repeat; background-size:contain; border:1px solid transparent; border-bottom-left-radius:10px; border-bottom-right-radius:10px; border-top-left-radius:10px; border-top-right-radius:10px; display:block; left:0px; padding:0; position:fixed; top:60px; width:263px; } #list_surround .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/KOYdmsj.png); background-position:100% 0; top:180px; } #list_surround .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/tvmFRA7.png); background-position:0 0; top:300px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/pgjr9ZG.png); background-position:100% 0; top:420px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/yEnTwde.png); background-position:0 0; top:540px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/5xhsV2r.png); background-position:100% 0; top:660px; } .status_selected a, .status_not_selected a, .status_selected:hover a, .status_not_selected:hover a { color:transparent; display:block; font-size:0; height:113px; width:263px; } .status_selected { display:block; } .status_not_selected { display:block; } .status_not_selected { opacity:0.7; } .status_not_selected:hover { color:transparent; opacity:1; } #list_surround { left:0 !important; margin:auto !important; position:absolute !important; right:0 !important; } #list_surround { position: absolute !important; right: 1px !important;} /****************************/ /* Blue Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(80, 50, 225, 0.9) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* THUMBNAIL SETTINGS Settings for the thumbnails of covers seen on your list. Height and width control the size, while margin-left and top can be added or taken away to change the position. Change the border size, type, or color, with the first border code.*/ .hide { height:55px; width:35px; margin-left:33px; margin-top:-65px; border:1px solid #FFFFFF; background-color:rgba(248, 162, 200, 0.7); background-position:50% 50%; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:0; display:inline-block !important; position: absolute; } /*THUMBNAIL HOVER SETTING This is the setting for the cover when you point to a thumbnail. Move the cover's position with the margin codes. Change its size with the padding codes. */ .hide:hover { margin-left:-140px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:20px; border-bottom-right-radius:20px; border-top-left-radius:20px; border-top-right-radius:20px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; position:absolute; z-index:1; } /*THUMBNAIL HOVER FLICKER FIX If you reposition your covers, and notice flickering, color this red, then reload your layout. Notice where the red bar appears when you point to your covers. Move that box with this code, over the parts where you point and see flickering. Then change it back to transparent! */ .hide:hover:after { background: transparent; content: " "; height: 75px; left: 0; position: absolute; top: 0; width: 210px; z-index: 20; } /*ANIMATION FOR ZOOM Change the timing of how long it takes for it zoom out here! Its set to .25 seconds by default. */ * { -webkit-transition:all 0.25s ease-in-out; transition:all 0.25s ease-in-out; } /*ROW WIDTH AND SPACING This will increase the height of your rows and move the anime title to the left. It might look funny on some layouts so you'll have to adjust it or ask for help! Height is the height, padding left is the space the anime title moves from the left. */ .td1:nth-of-type(2), .td2:nth-of-type(2) { height: 62px; padding-left: 42px; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i.imgur.com/w3gOv9Z.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i.imgur.com/O7L6P0Y.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://i.imgur.com/UJnyC7C.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://i.imgur.com/7zi9q0L.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i.imgur.com/Z10daK0.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } #list_surround { position: static !important; right: 1px !important;} #list_surround { margin-right: inherit !important; left: inherit !important; } |
May 31, 2015 3:37 AM
#2826
BurntJelly said: @_@ so many duplicate selectors... Had to change #list_surround to not be position:absolute which allowed the category buttons to be moved to the left and slightly down (I changed it to position:fixed too). @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://storage.live.com/items/4A07C1EEED420167%21150); /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ /* BACKGROUND IMAGE This is the main background image for the whole page. Change the image link to the background you want! If you're not seeing a background, make sure you are copied the entire CSS code or added any new background image codes correctly. Also your image link may be broken, try uploading a new background then! */ body { background-image: url(http://i.imgur.com/zm9Yen1.jpg); 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). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations). */ .header_title { background-color:transparent; color:blue; font-family:english111 vivace bt; font-size:48px; } /* SUB-HEADERS BACKGROUND COLOR COLOR Below each main header is the sub-header which says Score, Episodes, Tags, etc. */ .table_header { background-color:navy; } /* 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:comic Sans MS; font-size:20px; } /* 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:white; font-family:Lucida Grande; } /* LIST WIDTH Use this to increase the width of your list! */ #list_surround { width:600px; } /* REPOSITION MAIN BACKGROUND Change the position your background starts on your screen from with the two properties after "background-position" below. You replace 'center' and '43%' with two other 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" after background-position in the code below, replacing "center 43%". 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: center 43%;} /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:red; text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); 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; } #copyright:after { content: " Custom CSS by Shishio-kun. Google 'Shishio's Custom Lists' for more designs or info."; } .status_selected { background-color:black; padding:2px; color:white; text-decoration: blink; } .status_not_selected { background-color:black; padding:2px; color:white; } .status_selected a{ color:cyan; } .status_not_selected a{ color:white; } .thickbox { color:cyan; font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } body { background-size: cover; } /* SIDE BUTTONS */ #list_surround .status_selected, #list_surround .status_not_selected { -webkit-background-clip:padding-box !important; background-clip:padding-box !important; background-color:transparent; background-image:url(http://i.imgur.com/Sc2lNEh.png); background-position:0 0; background-repeat:no-repeat no-repeat; background-size:contain; border:1px solid transparent; border-bottom-left-radius:10px; border-bottom-right-radius:10px; border-top-left-radius:10px; border-top-right-radius:10px; display:block; left:0px; padding:0; position:fixed; top:60px; width:263px; } #list_surround .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/KOYdmsj.png); background-position:100% 0; top:180px; } #list_surround .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/tvmFRA7.png); background-position:0 0; top:300px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/pgjr9ZG.png); background-position:100% 0; top:420px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/yEnTwde.png); background-position:0 0; top:540px; } #list_surround .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected + .status_not_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_selected, #list_surround .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected + .status_not_selected { background-image:url(http://i.imgur.com/5xhsV2r.png); background-position:100% 0; top:660px; } .status_selected a, .status_not_selected a, .status_selected:hover a, .status_not_selected:hover a { color:transparent; display:block; font-size:0; height:113px; width:263px; } .status_selected { display:block; } .status_not_selected { display:block; } .status_not_selected { opacity:0.7; } .status_not_selected:hover { color:transparent; opacity:1; } #list_surround { left:0 !important; margin:auto !important; position:absolute !important; right:0 !important; } #list_surround { position: absolute !important; right: 1px !important;} /****************************/ /* Blue Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(80, 50, 225, 0.9) !important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* THUMBNAIL SETTINGS Settings for the thumbnails of covers seen on your list. Height and width control the size, while margin-left and top can be added or taken away to change the position. Change the border size, type, or color, with the first border code.*/ .hide { height:55px; width:35px; margin-left:33px; margin-top:-65px; border:1px solid #FFFFFF; background-color:rgba(248, 162, 200, 0.7); background-position:50% 50%; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:0; display:inline-block !important; position: absolute; } /*THUMBNAIL HOVER SETTING This is the setting for the cover when you point to a thumbnail. Move the cover's position with the margin codes. Change its size with the padding codes. */ .hide:hover { margin-left:-140px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:20px; border-bottom-right-radius:20px; border-top-left-radius:20px; border-top-right-radius:20px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; position:absolute; z-index:1; } /*THUMBNAIL HOVER FLICKER FIX If you reposition your covers, and notice flickering, color this red, then reload your layout. Notice where the red bar appears when you point to your covers. Move that box with this code, over the parts where you point and see flickering. Then change it back to transparent! */ .hide:hover:after { background: transparent; content: " "; height: 75px; left: 0; position: absolute; top: 0; width: 210px; z-index: 20; } /*ANIMATION FOR ZOOM Change the timing of how long it takes for it zoom out here! Its set to .25 seconds by default. */ * { -webkit-transition:all 0.25s ease-in-out; transition:all 0.25s ease-in-out; } /*ROW WIDTH AND SPACING This will increase the height of your rows and move the anime title to the left. It might look funny on some layouts so you'll have to adjust it or ask for help! Height is the height, padding left is the space the anime title moves from the left. */ .td1:nth-of-type(2), .td2:nth-of-type(2) { height: 62px; padding-left: 42px; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) Used to remove the more button (which no longer works after using the code above to show covers). Also helps with settings for the tag hover option if you use that. */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } /* Anime List only CURRENTLY WATCHING HEADER This is the header above currently watching/reading. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_cw { background-image:url(http://i.imgur.com/w3gOv9Z.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* COMPLETED HEADER This is the header above your anime/manga that's completed. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_completed { background-image:url(http://i.imgur.com/O7L6P0Y.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* ON-HOLD HEADER This is the header above your animes/mangas on-hold. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_onhold { background-image:url(http://i.imgur.com/UJnyC7C.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* DROPPED HEADER This is the header above your dropped animes/mangas. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_dropped { background-image:url(http://i.imgur.com/7zi9q0L.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER This is the header above the anime/manga you plan to see or read on your list. Increase the amount after "height:" if your image doesn't fit the header. Lower the margin-bottom below zero if you wish the header move it behind the list. If in Google Chrome your header has little to no height and doesn't increase when you try to change it, then replace "height:" with "padding-top:". */ .header_ptw { background-image:url(http://i.imgur.com/Z10daK0.png); height: 200px; margin-bottom: 0px; background-color: transparent; background-repeat: no-repeat; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR You need this code to remove the default background colors from the header and override any related codes. You're supposed to use your own images or the default ones for the header, so this color is set to transparent so it won't get in the way. If you want the color back for some reason, remove this section. */ .header_title { background-color: transparent !important; } /* OTHER CODES Stuff I had to add after site changes. You need this otherwise the headers won't be visible. */ tbody {background-color: transparent; background-image: none;} /* REMOVE HEADER TEXT These codes remove the original text like "Completed" and "Currently Watching" from each category on the list. Some people will want the text gone so they can have their own custom logos. But if you want the text back, you have to remove this whole section. It shouldn't affect the images in any way. */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } #list_surround { position: static !important; right: 1px !important;} #list_surround { margin-right: inherit !important; left: inherit !important; } Thnx a lot, that's exactly what i wanted |
Jun 2, 2015 4:23 PM
#2827
Hey. I posted this a while back, but because posting it on 2 different topics by mistake it was deleted. So back after a month xD... Well then. there's this list style http://myanimelist.net/forum/?topicid=606489 Here's an example What I specifically would like is the special tags. how they are under the anime name. I tried using it's css and editing it to my liking(changing the background was fine, but I tried to remove the "completed - watching" etc. sidebar and everything fucked up), and it didn't work. I tried finding the css part doing those special tags under the anime name and failed. So if someone could make a simple style with only the tags under the name of the anime I would gladly appreciate it! Thanks in advance. Answered |
TheMiracleHagenJun 6, 2015 12:22 PM
Jun 5, 2015 3:04 AM
#2828
anyone have a way to target this little dash directly with CSS? I'd like to remove it with Stylish (along with the new date text, tho that is easy to remove) |
Jun 5, 2015 4:17 AM
#2829
Hello, everyone. :) I have come here regarding a mangalist layout I am in the process of editing. Please view here. Questions
|
ToarujisuruJun 6, 2015 4:54 AM
"Be the change you wish to see in the world." |
Jun 5, 2015 3:00 PM
#2830
Toarujisuru said: Hello, everyone. :) I have come here regarding a mangalist layout I am in the process of editing. Please view here. Questions
for the last one just replace this: .animetitle + small { visibility: visible !important; text-transform: lowercase; padding: 0 5px 1px; font-size: 12px; color: #FFFFFF; background-color: rgb(128, 205, 232); border-radius: 5px; } .animetitle + small { visibility: visible !important; text-transform: lowercase; padding: 0 5px 1px; font-size: 12px; color: #595757; } |
Jun 5, 2015 5:50 PM
#2831
Redlord307 said: for the last one just replace this: .animetitle + small { visibility: visible !important; text-transform: lowercase; padding: 0 5px 1px; font-size: 12px; color: #FFFFFF; background-color: rgb(128, 205, 232); border-radius: 5px; } .animetitle + small { visibility: visible !important; text-transform: lowercase; padding: 0 5px 1px; font-size: 12px; color: #595757; } Thank you very much! Worked perfectly. Toarujisuru said: Questions
|
"Be the change you wish to see in the world." |
Jun 5, 2015 9:03 PM
#2832
Shishio-kun said: You can set color:transparent on the TD to make it "disappear". To "remove" it you can set font-size:0px on the TD. Either way, you'll have to override every child element's style to "fix" the damage.anyone have a way to target this little dash directly with CSS? I'd like to remove it with Stylish (along with the new date text, tho that is easy to remove) |
Jun 5, 2015 9:25 PM
#2833
JohnnyBme said: I managed to hack it onto your current list style.Hey. I posted this a while back, but because posting it on 2 different topics by mistake it was deleted. So back after a month xD... Well then. there's this list style http://myanimelist.net/forum/?topicid=606489 Here's an example: What I specifically would like is the special tags. how they are under the anime name. I tried using it's css and editing it to my liking(changing the background was fine, but I tried to remove the "completed - watching" etc. sidebar and everything fucked up), and it didn't work. I tried finding the css part doing those special tags under the anime name and failed. So if someone could make a simple style with only the tags under the name of the anime I would gladly appreciate it! Thanks in advance. <style type="text/css">@import "https://dl.dropbox.com/s/e5t6j0tes8e2qt3/01cov.css"; @import url(http://storage.live.com/items/4A07C1EEED420167%21152); @import "http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css"; @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://storage.live.com/items/4A07C1EEED420167%21152); #more9253 {background-image:url(http://cdn.myanimelist.net/images/anime/5/73199.jpg);} #more27899 {background-image: url(http://cdn.myanimelist.net/images/anime/13/71777.jpg);} #more6746 {background-image:url(http://cdn.myanimelist.net/images/anime/10/71772.jpg);} #more1689 {background-image:url(http://cdn.myanimelist.net/images/anime/6/73426l.jpg); } #more457 {background-image:url(http://cdn.myanimelist.net/images/anime/2/73862l.jpg); } /* MAIN BACKGROUND COLOR AND IMAGE By default, there's no image in this part of the code. Its just a background color- silver. (the default image of Black Rock Shooter is in the next code #inlineContent) Change the color to what you want or add an image for a backdrop here. For more info or questions on this code: http://myanimelist.net/forum/?topicid=412787 */ body { background: url(http://images4.alphacoders.com/119/119766.jpg) fixed;background-size: cover; #FFFFFF; } /* SECOND BACKGROUND (with render) The background behind the list but in front of the main background. By default, for its own image it has the render of Black Rock Shooter (girl). You can change her with another render or even background image here! Make sure you leave the width as large as the image's width. The positioning of the background can be controlled with the % numbers after the background url, but you may need to expand the width for more positioning options. All the other codes should be left alone. */ /* TITLE The List header which by default says My Anime List can be changed out here. */ #list_surround { background: url("http://i44.tinypic.com/15s9esp.jpg") no-repeat scroll 50% 1px transparent; font-size: 81.25%; line-height: 1; margin: 0 auto; padding-bottom: 10px; padding-top: 227px; width: 920px; } /* FONT Font used across the whole list. */ body { font-family: arial; } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } /* CATEGORY LINKS */ .status_not_selected, .status_selected { border: 0 none !important; height: auto !important; padding: 0 8px; text-align: center !important; width: 16.667% !important; } .status_not_selected a, .status_selected a { background-color: rgba(64, 60, 90, 0.6); border-color: rgba(48, 44, 64, 0.5); border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #FFFFFF; display: block !important; font-weight: bold; padding: 8px; text-shadow: 0 1px rgba(0, 0, 0, 0.1); } .status_selected a { background-color: rgba(180, 32, 48, 0.6); border-color: rgba(164, 16, 32, 0.5); } .status_not_selected a:hover { background-color: #403C5A; border-color: #201C3A; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .status_selected a:hover { background-color: #B42030; border-color: rgba(148, 0, 24, 0.5); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } /* HEADER */ .table_header { background-color: rgba(65, 35, 95, 0.6); } .table_header:first-of-type { border-radius: 3px 0 0 0; } .table_header:nth-of-type(2) { text-align: left; } .table_header:nth-of-type(5) { border-radius: 0 3px 0 0; } /* ROWS COLOR */ .td1 { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(136, 147, 169, 0.6); } .td2 { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(151, 164, 183, 0.6); } /* ROWS HOVER */ tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); } .td1:nth-of-type(2), .td2:nth-of-type(2) { text-align: left; } /* ROW FONT SIZE TRANSITION (FIREFOX ONLY) */ noindex:-moz-any-link, tr:hover td.td1, tr:hover td.td2 { font-size: 15px; } /* LIST SETTINGS */ .table_header, .td1, .td2, .status_selected, .status_not_selected, .category_totals { border: 0; padding: 4px; text-align: center; vertical-align: middle; } .table_header, .td1, .td2, .category_totals { line-height: 30px; } .borderRBL{ line-height: normal !important; } [cellspacing="0"] { line-height: 17px; } [class^="header_"] +{ border-collapse: separate !important; } /* CATEGORY TOTALS */ .category_totals { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(72, 64, 87, 0); border-radius: 0 0 3px 3px; color: rgba(51, 51, 51, 0); text-align: center; } .category_totals:hover { background-color: rgba(72, 64, 87, 0.6); color: #EEEEEE; } /* HEADER TEXT AND DIMENSIONS */ [class^="header_"] * { font-size: 19px; height: 60px; line-height: 24px; padding-bottom: 4px; text-align: left; vertical-align: bottom; } .header_title { border-radius: 4px 4px 4px 4px; display: inline-block; font-style: italic; height: auto; padding: 0 8px 0 0; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.15); } /* BOTTOM OF LIST */ #grand_totals { background-color: rgba(72, 64, 87, 0.6); border: 0 none; border-radius: 3px 3px 3px 3px; color: #EEEEEE; line-height: 20px; min-height: 20px; padding: 8px; text-align: center; vertical-align: middle; } #copyright { background-color: rgba(180, 32, 48, 0.6); border-radius: 3px 3px 3px 3px; color: #EEEEEE; line-height: 17px; margin-top: 10px; padding: 8px; text-align: center; } /* THUMBNAIL SETTINGS Settings for the thumbnails of covers seen on your list. Height and width control the size, while margin-left and top can be added or taken away to change the position. Change the border size, type, or color, with the first border code.*/ .hide { height:55px; width:35px; margin-left:33px; margin-top:-65px; border:1px solid #FFFFFF; background-color:rgba(248, 162, 200, 0.7); background-position:50% 50%; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:0; display:inline-block !important; position: absolute; } /*THUMBNAIL HOVER SETTING This is the setting for the cover when you point to a thumbnail. Move the cover's position with the margin codes. Change its size with the padding codes. */ .hide:hover { margin-left:-140px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:20px; border-bottom-right-radius:20px; border-top-left-radius:20px; border-top-right-radius:20px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; position:absolute; z-index:1; } /*THUMBNAIL HOVER FLICKER FIX If you reposition your covers, and notice flickering, color this red, then reload your layout. Notice where the red bar appears when you point to your covers. Move that box with this code, over the parts where you point and see flickering. Then change it back to transparent! */ .hide:hover:after { background: transparent; content: " "; height: 75px; left: 0; position: absolute; top: 0; width: 210px; z-index: 20; } /*ANIMATION FOR ZOOM Change the timing of how long it takes for it zoom out here! Its set to .25 seconds by default. */ * { -webkit-transition:all 0.25s ease-in-out; transition:all 0.25s ease-in-out; } /*ROW WIDTH AND SPACING This will increase the height of your rows and move the anime title to the left. It might look funny on some layouts so you'll have to adjust it or ask for help! Height is the height, padding left is the space the anime title moves from the left. */ .td1:nth-of-type(2), .td2:nth-of-type(2) { height: 62px; padding-left: 42px; vertical-align: top; } /* tags below title */ .td1:nth-of-type(6), .td2:nth-of-type(6) { background: transparent !important; margin-left: -840px; margin-top: 30px; position: absolute; width: 640px; } /* hide tags header */ .table_header:nth-child(6) { display: none; } </style> |
Jun 6, 2015 7:33 AM
#2834
BurntJelly said: Shishio-kun said: You can set color:transparent on the TD to make it "disappear". To "remove" it you can set font-size:0px on the TD. Either way, you'll have to override every child element's style to "fix" the damage.anyone have a way to target this little dash directly with CSS? I'd like to remove it with Stylish (along with the new date text, tho that is easy to remove) http://i.imgur.com/Xhi6fbz.png Yeah thank you- thats the only way I found too but I was hoping someone had a sneaky trick to get a direct code to target that dash and avoid the "fixing" cuz it will probably be problematic later. |
Jun 6, 2015 12:21 PM
#2835
BurntJelly said: JohnnyBme said: I managed to hack it onto your current list style.Hey. I posted this a while back, but because posting it on 2 different topics by mistake it was deleted. So back after a month xD... Well then. there's this list style http://myanimelist.net/forum/?topicid=606489 Here's an example: What I specifically would like is the special tags. how they are under the anime name. I tried using it's css and editing it to my liking(changing the background was fine, but I tried to remove the "completed - watching" etc. sidebar and everything fucked up), and it didn't work. I tried finding the css part doing those special tags under the anime name and failed. So if someone could make a simple style with only the tags under the name of the anime I would gladly appreciate it! Thanks in advance. <style type="text/css">@import "https://dl.dropbox.com/s/e5t6j0tes8e2qt3/01cov.css"; @import url(http://storage.live.com/items/4A07C1EEED420167%21152); @import "http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css"; @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); @import url(http://storage.live.com/items/4A07C1EEED420167%21152); #more9253 {background-image:url(http://cdn.myanimelist.net/images/anime/5/73199.jpg);} #more27899 {background-image: url(http://cdn.myanimelist.net/images/anime/13/71777.jpg);} #more6746 {background-image:url(http://cdn.myanimelist.net/images/anime/10/71772.jpg);} #more1689 {background-image:url(http://cdn.myanimelist.net/images/anime/6/73426l.jpg); } #more457 {background-image:url(http://cdn.myanimelist.net/images/anime/2/73862l.jpg); } /* MAIN BACKGROUND COLOR AND IMAGE By default, there's no image in this part of the code. Its just a background color- silver. (the default image of Black Rock Shooter is in the next code #inlineContent) Change the color to what you want or add an image for a backdrop here. For more info or questions on this code: http://myanimelist.net/forum/?topicid=412787 */ body { background: url(http://images4.alphacoders.com/119/119766.jpg) fixed;background-size: cover; #FFFFFF; } /* SECOND BACKGROUND (with render) The background behind the list but in front of the main background. By default, for its own image it has the render of Black Rock Shooter (girl). You can change her with another render or even background image here! Make sure you leave the width as large as the image's width. The positioning of the background can be controlled with the % numbers after the background url, but you may need to expand the width for more positioning options. All the other codes should be left alone. */ /* TITLE The List header which by default says My Anime List can be changed out here. */ #list_surround { background: url("http://i44.tinypic.com/15s9esp.jpg") no-repeat scroll 50% 1px transparent; font-size: 81.25%; line-height: 1; margin: 0 auto; padding-bottom: 10px; padding-top: 227px; width: 920px; } /* FONT Font used across the whole list. */ body { font-family: arial; } /* LINK COLOR */ a { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; color: #EEEEEE; text-decoration: none; text-shadow: none; } a:hover { color: #3F1786; text-shadow: 0 1px rgba(255, 255, 255, 0.15); } /* CATEGORY LINKS */ .status_not_selected, .status_selected { border: 0 none !important; height: auto !important; padding: 0 8px; text-align: center !important; width: 16.667% !important; } .status_not_selected a, .status_selected a { background-color: rgba(64, 60, 90, 0.6); border-color: rgba(48, 44, 64, 0.5); border-radius: 2px 2px 2px 2px; border-style: solid; border-width: 1px; color: #FFFFFF; display: block !important; font-weight: bold; padding: 8px; text-shadow: 0 1px rgba(0, 0, 0, 0.1); } .status_selected a { background-color: rgba(180, 32, 48, 0.6); border-color: rgba(164, 16, 32, 0.5); } .status_not_selected a:hover { background-color: #403C5A; border-color: #201C3A; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } .status_selected a:hover { background-color: #B42030; border-color: rgba(148, 0, 24, 0.5); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px rgba(0, 0, 0, 0.3); } /* HEADER */ .table_header { background-color: rgba(65, 35, 95, 0.6); } .table_header:first-of-type { border-radius: 3px 0 0 0; } .table_header:nth-of-type(2) { text-align: left; } .table_header:nth-of-type(5) { border-radius: 0 3px 0 0; } /* ROWS COLOR */ .td1 { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(136, 147, 169, 0.6); } .td2 { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(151, 164, 183, 0.6); } /* ROWS HOVER */ tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); } .td1:nth-of-type(2), .td2:nth-of-type(2) { text-align: left; } /* ROW FONT SIZE TRANSITION (FIREFOX ONLY) */ noindex:-moz-any-link, tr:hover td.td1, tr:hover td.td2 { font-size: 15px; } /* LIST SETTINGS */ .table_header, .td1, .td2, .status_selected, .status_not_selected, .category_totals { border: 0; padding: 4px; text-align: center; vertical-align: middle; } .table_header, .td1, .td2, .category_totals { line-height: 30px; } .borderRBL{ line-height: normal !important; } [cellspacing="0"] { line-height: 17px; } [class^="header_"] +{ border-collapse: separate !important; } /* CATEGORY TOTALS */ .category_totals { -moz-transition: all 0.25s ease-in-out 0s; -webkit-transition: all 0.25s ease-in-out 0s; -o-transition: all 0.25s ease-in-out 0s; transition: all 0.25s ease-in-out 0s; background-color: rgba(72, 64, 87, 0); border-radius: 0 0 3px 3px; color: rgba(51, 51, 51, 0); text-align: center; } .category_totals:hover { background-color: rgba(72, 64, 87, 0.6); color: #EEEEEE; } /* HEADER TEXT AND DIMENSIONS */ [class^="header_"] * { font-size: 19px; height: 60px; line-height: 24px; padding-bottom: 4px; text-align: left; vertical-align: bottom; } .header_title { border-radius: 4px 4px 4px 4px; display: inline-block; font-style: italic; height: auto; padding: 0 8px 0 0; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.15); } /* BOTTOM OF LIST */ #grand_totals { background-color: rgba(72, 64, 87, 0.6); border: 0 none; border-radius: 3px 3px 3px 3px; color: #EEEEEE; line-height: 20px; min-height: 20px; padding: 8px; text-align: center; vertical-align: middle; } #copyright { background-color: rgba(180, 32, 48, 0.6); border-radius: 3px 3px 3px 3px; color: #EEEEEE; line-height: 17px; margin-top: 10px; padding: 8px; text-align: center; } /* THUMBNAIL SETTINGS Settings for the thumbnails of covers seen on your list. Height and width control the size, while margin-left and top can be added or taken away to change the position. Change the border size, type, or color, with the first border code.*/ .hide { height:55px; width:35px; margin-left:33px; margin-top:-65px; border:1px solid #FFFFFF; background-color:rgba(248, 162, 200, 0.7); background-position:50% 50%; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:7px; border-bottom-right-radius:7px; border-top-left-radius:7px; border-top-right-radius:0; display:inline-block !important; position: absolute; } /*THUMBNAIL HOVER SETTING This is the setting for the cover when you point to a thumbnail. Move the cover's position with the margin codes. Change its size with the padding codes. */ .hide:hover { margin-left:-140px; padding-right:150px; padding-top:220px !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; border-bottom-left-radius:20px; border-bottom-right-radius:20px; border-top-left-radius:20px; border-top-right-radius:20px; box-shadow:rgba(63, 52, 60, 0.55) 0 0 8px 8px; position:absolute; z-index:1; } /*THUMBNAIL HOVER FLICKER FIX If you reposition your covers, and notice flickering, color this red, then reload your layout. Notice where the red bar appears when you point to your covers. Move that box with this code, over the parts where you point and see flickering. Then change it back to transparent! */ .hide:hover:after { background: transparent; content: " "; height: 75px; left: 0; position: absolute; top: 0; width: 210px; z-index: 20; } /*ANIMATION FOR ZOOM Change the timing of how long it takes for it zoom out here! Its set to .25 seconds by default. */ * { -webkit-transition:all 0.25s ease-in-out; transition:all 0.25s ease-in-out; } /*ROW WIDTH AND SPACING This will increase the height of your rows and move the anime title to the left. It might look funny on some layouts so you'll have to adjust it or ask for help! Height is the height, padding left is the space the anime title moves from the left. */ .td1:nth-of-type(2), .td2:nth-of-type(2) { height: 62px; padding-left: 42px; vertical-align: top; } /* tags below title */ .td1:nth-of-type(6), .td2:nth-of-type(6) { background: transparent !important; margin-left: -840px; margin-top: 30px; position: absolute; width: 640px; } /* hide tags header */ .table_header:nth-child(6) { display: none; } </style> You even hacked into my list style xD (you could have just asked for it) Thank you very much. |
Jun 7, 2015 12:39 AM
#2836
Is it possible to make my banner, the custom image at the top, not constrained by the size of the list? My half-done list http://myanimelist.net/animelist/Gruuvy Thanks a lot! |
Jun 7, 2015 3:38 AM
#2837
Gruuvy said: Is it possible to make my banner, the custom image at the top, not constrained by the size of the list? My half-done list http://myanimelist.net/animelist/Gruuvy Thanks a lot! Yes it is possible. Here's such a version for you to play with ;) /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ body { background-image: url(http://i58.tinypic.com/9vbp7a.png); background-attachment: fixed; background-position: center center; background-size: cover ; } #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) } .header_title { background-color:transparent; color:; font-family:english111 vivace bt; font-size:30px; } .table_header { background-color:rgba(158,226,240,0.7); color:grey; font-family:Lucida Grande; } .table_headerLink, .table_headerLink:visited { color:grey; } .animetitle, .animetitle:visited { font-family:comic Sans MS; font-size:18px; } .td1, .td2, a, a:visited, .category_totals, #grand_totals, #copyright { color:black; font-family:Lucida Grande; } #list_surround { width:1280px; /*banner width*/ position: relative; } .header_cw { background-image:url(http://i61.tinypic.com/2q81spl.png); height: 209px; margin-bottom: 0px; background-color: transparent; transition: all 0.2s ease-in; } .header_completed { background-image:url(http://i59.tinypic.com/orp4xe.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_onhold { background-image:url(http://i61.tinypic.com/rt3trs.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_ptw { background-image:url(http://i60.tinypic.com/33p989g.png); height: 209px; margin-bottom: 0px; background-color: transparent; } #list_surround { background-image: url(http://i62.tinypic.com/2d446u.png); background-size: contain; background-position: top; background-repeat: no-repeat; padding-top: 317px ; /*Moving the list up and down */ } /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:cyan; text-decoration:underline; } .category_totals, .td1, #grand_totals, #copyright { background-color: rgba(209,247,255,0.5); border-width:0; padding:2px; } .td2 { background-color: rgba(206,234,240,0.5); padding:2px; border-width:0; } tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover .td1, tr:hover .td2 { height: 40px; color: cyan; font-weight: bold } tr:hover [class^="td"] a { color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover [class^="td"] .animetitle { text-transform: uppercase; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } .status_selected, .status_not_selected { border: 8px ridge navy; height: 44px; text-align: center; width: 16.667%; font-family: Comic Sans MS; font-weight: bold; } .status_not_selected { opacity: 0.5; background-color: rgba(157, 229, 245, 1); } .status_not_selected:hover, .status_selected { background-color: rgba(28, 137, 232, 1); opacity: 1; border: 12px ridge navy; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected:hover a, .status_selected a { color: cyan; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected a, .status_selected a ,.status_not_selected:hover a,.status_not_selected a:hover{ display:block; text-decoration:none; } .table_header { height: 8px; font-weight:bold; padding:2px; } .category_totals { height:20px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } |
Jun 7, 2015 5:24 AM
#2838
Oiomi-chan said: Gruuvy said: Is it possible to make my banner, the custom image at the top, not constrained by the size of the list? My half-done list http://myanimelist.net/animelist/Gruuvy Thanks a lot! Yes it is possible. Here's such a version for you to play with ;) /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ body { background-image: url(http://i58.tinypic.com/9vbp7a.png); background-attachment: fixed; background-position: center center; background-size: cover ; } #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) } .header_title { background-color:transparent; color:; font-family:english111 vivace bt; font-size:30px; } .table_header { background-color:rgba(158,226,240,0.7); color:grey; font-family:Lucida Grande; } .table_headerLink, .table_headerLink:visited { color:grey; } .animetitle, .animetitle:visited { font-family:comic Sans MS; font-size:18px; } .td1, .td2, a, a:visited, .category_totals, #grand_totals, #copyright { color:black; font-family:Lucida Grande; } #list_surround { width:1280px; /*banner width*/ position: relative; } .header_cw { background-image:url(http://i61.tinypic.com/2q81spl.png); height: 209px; margin-bottom: 0px; background-color: transparent; transition: all 0.2s ease-in; } .header_completed { background-image:url(http://i59.tinypic.com/orp4xe.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_onhold { background-image:url(http://i61.tinypic.com/rt3trs.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_ptw { background-image:url(http://i60.tinypic.com/33p989g.png); height: 209px; margin-bottom: 0px; background-color: transparent; } #list_surround { background-image: url(http://i62.tinypic.com/2d446u.png); background-size: contain; background-position: top; background-repeat: no-repeat; padding-top: 317px ; /*Moving the list up and down */ } /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:cyan; text-decoration:underline; } .category_totals, .td1, #grand_totals, #copyright { background-color: rgba(209,247,255,0.5); border-width:0; padding:2px; } .td2 { background-color: rgba(206,234,240,0.5); padding:2px; border-width:0; } tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover .td1, tr:hover .td2 { height: 40px; color: cyan; font-weight: bold } tr:hover [class^="td"] a { color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover [class^="td"] .animetitle { text-transform: uppercase; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } .status_selected, .status_not_selected { border: 8px ridge navy; height: 44px; text-align: center; width: 16.667%; font-family: Comic Sans MS; font-weight: bold; } .status_not_selected { opacity: 0.5; background-color: rgba(157, 229, 245, 1); } .status_not_selected:hover, .status_selected { background-color: rgba(28, 137, 232, 1); opacity: 1; border: 12px ridge navy; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected:hover a, .status_selected a { color: cyan; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected a, .status_selected a ,.status_not_selected:hover a,.status_not_selected a:hover{ display:block; text-decoration:none; } .table_header { height: 8px; font-weight:bold; padding:2px; } .category_totals { height:20px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } Thanks! I have a weird problem, when I try to paste your code in and update it, the following code that was supposed to be updated #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) became this automatically #list_surround >{ width:830px; /*use to change list width */ margin:auto; } #list_surround >:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) I tried to paste it again, checking it was correct before I updated the css in the Edit Advanced CSS File, but it always changes itself automatically. The code works though when I use inspect element in chrome to change it, is it because mal don't let us change the table separately or something? EDIT: It seems to me that if i leave the word 'table' by itself it gets removed? |
GruuvyJun 7, 2015 5:56 AM
Jun 7, 2015 6:00 AM
#2839
Gruuvy said: Do you know how to use imports? because now when you mention it MAL removes table from css code... but it can't do anything to imports. another more tiresome way is to trick mal using slashes but I'm not sure exactly where to put them.. Oiomi-chan said: Gruuvy said: Is it possible to make my banner, the custom image at the top, not constrained by the size of the list? My half-done list http://myanimelist.net/animelist/Gruuvy Thanks a lot! Yes it is possible. Here's such a version for you to play with ;) /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ body { background-image: url(http://i58.tinypic.com/9vbp7a.png); background-attachment: fixed; background-position: center center; background-size: cover ; } #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) } .header_title { background-color:transparent; color:; font-family:english111 vivace bt; font-size:30px; } .table_header { background-color:rgba(158,226,240,0.7); color:grey; font-family:Lucida Grande; } .table_headerLink, .table_headerLink:visited { color:grey; } .animetitle, .animetitle:visited { font-family:comic Sans MS; font-size:18px; } .td1, .td2, a, a:visited, .category_totals, #grand_totals, #copyright { color:black; font-family:Lucida Grande; } #list_surround { width:1280px; /*banner width*/ position: relative; } .header_cw { background-image:url(http://i61.tinypic.com/2q81spl.png); height: 209px; margin-bottom: 0px; background-color: transparent; transition: all 0.2s ease-in; } .header_completed { background-image:url(http://i59.tinypic.com/orp4xe.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_onhold { background-image:url(http://i61.tinypic.com/rt3trs.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_ptw { background-image:url(http://i60.tinypic.com/33p989g.png); height: 209px; margin-bottom: 0px; background-color: transparent; } #list_surround { background-image: url(http://i62.tinypic.com/2d446u.png); background-size: contain; background-position: top; background-repeat: no-repeat; padding-top: 317px ; /*Moving the list up and down */ } /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:cyan; text-decoration:underline; } .category_totals, .td1, #grand_totals, #copyright { background-color: rgba(209,247,255,0.5); border-width:0; padding:2px; } .td2 { background-color: rgba(206,234,240,0.5); padding:2px; border-width:0; } tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover .td1, tr:hover .td2 { height: 40px; color: cyan; font-weight: bold } tr:hover [class^="td"] a { color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover [class^="td"] .animetitle { text-transform: uppercase; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } .status_selected, .status_not_selected { border: 8px ridge navy; height: 44px; text-align: center; width: 16.667%; font-family: Comic Sans MS; font-weight: bold; } .status_not_selected { opacity: 0.5; background-color: rgba(157, 229, 245, 1); } .status_not_selected:hover, .status_selected { background-color: rgba(28, 137, 232, 1); opacity: 1; border: 12px ridge navy; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected:hover a, .status_selected a { color: cyan; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected a, .status_selected a ,.status_not_selected:hover a,.status_not_selected a:hover{ display:block; text-decoration:none; } .table_header { height: 8px; font-weight:bold; padding:2px; } .category_totals { height:20px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } Thanks! I have a weird problem, when I try to paste your code in and update it, the following code that was supposed to be updated #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) became this automatically #list_surround >{ width:830px; /*use to change list width */ margin:auto; } #list_surround >:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) I tried to paste it again, checking it was correct before I updated the css in the Edit Advanced CSS File, but it always changes itself automatically. The code works though when I use inspect element in chrome to change it, is it because mal don't let us change the table separately or something? EDIT: It seems to me that if i leave the word 'table' by itself it gets removed? edit> hese's a tutorial on imports http://myanimelist.net/forum/?topicid=411779 |
Pico-tanJun 7, 2015 6:04 AM
Jun 7, 2015 6:07 AM
#2840
Oiomi-chan said: Gruuvy said: Do you know how to use imports? because now when you mention it MAL removes table from css code... but it can't do anything to imports. another more tiresome way is to trick mal using slashes but I'm not sure exactly where to put them.. Oiomi-chan said: Gruuvy said: Is it possible to make my banner, the custom image at the top, not constrained by the size of the list? My half-done list http://myanimelist.net/animelist/Gruuvy Thanks a lot! Yes it is possible. Here's such a version for you to play with ;) /* Got a question or want to learn more? Try this link: http://myanimelist.net/forum/?topicid=419405&show=0#post1 */ body { background-image: url(http://i58.tinypic.com/9vbp7a.png); background-attachment: fixed; background-position: center center; background-size: cover ; } #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) } .header_title { background-color:transparent; color:; font-family:english111 vivace bt; font-size:30px; } .table_header { background-color:rgba(158,226,240,0.7); color:grey; font-family:Lucida Grande; } .table_headerLink, .table_headerLink:visited { color:grey; } .animetitle, .animetitle:visited { font-family:comic Sans MS; font-size:18px; } .td1, .td2, a, a:visited, .category_totals, #grand_totals, #copyright { color:black; font-family:Lucida Grande; } #list_surround { width:1280px; /*banner width*/ position: relative; } .header_cw { background-image:url(http://i61.tinypic.com/2q81spl.png); height: 209px; margin-bottom: 0px; background-color: transparent; transition: all 0.2s ease-in; } .header_completed { background-image:url(http://i59.tinypic.com/orp4xe.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_onhold { background-image:url(http://i61.tinypic.com/rt3trs.png); height: 209px; margin-bottom: 0px; background-color: transparent; } .header_ptw { background-image:url(http://i60.tinypic.com/33p989g.png); height: 209px; margin-bottom: 0px; background-color: transparent; } #list_surround { background-image: url(http://i62.tinypic.com/2d446u.png); background-size: contain; background-position: top; background-repeat: no-repeat; padding-top: 317px ; /*Moving the list up and down */ } /*OTHER CODES Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club! */ body { font-weight: light; background-repeat: no-repeat; background-color: black; } #list_surround { margin:auto; } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color:cyan; text-decoration:underline; } .category_totals, .td1, #grand_totals, #copyright { background-color: rgba(209,247,255,0.5); border-width:0; padding:2px; } .td2 { background-color: rgba(206,234,240,0.5); padding:2px; border-width:0; } tr:hover [class^="td"] { background-color: rgba(72, 64, 87, 0.6); color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover .td1, tr:hover .td2 { height: 40px; color: cyan; font-weight: bold } tr:hover [class^="td"] a { color: cyan; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } tr:hover [class^="td"] .animetitle { text-transform: uppercase; -moz-transition: .3s ease-out; -webkit-transition: .3s ease-out; -o-transition: .3s ease-out; } .status_selected, .status_not_selected { border: 8px ridge navy; height: 44px; text-align: center; width: 16.667%; font-family: Comic Sans MS; font-weight: bold; } .status_not_selected { opacity: 0.5; background-color: rgba(157, 229, 245, 1); } .status_not_selected:hover, .status_selected { background-color: rgba(28, 137, 232, 1); opacity: 1; border: 12px ridge navy; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected:hover a, .status_selected a { color: cyan; -moz-transition: .2s ease-out; -webkit-transition: .2s ease-out; -o-transition: .2s ease-out; } .status_not_selected a, .status_selected a ,.status_not_selected:hover a,.status_not_selected a:hover{ display:block; text-decoration:none; } .table_header { height: 8px; font-weight:bold; padding:2px; } .category_totals { height:20px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } Thanks! I have a weird problem, when I try to paste your code in and update it, the following code that was supposed to be updated #list_surround > table{ width:830px; /*use to change list width */ margin:auto; } #list_surround > table:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) became this automatically #list_surround >{ width:830px; /*use to change list width */ margin:auto; } #list_surround >:first-of-type{ width:100%; /*use to change menu to banner ratio (Max 100%)*/) I tried to paste it again, checking it was correct before I updated the css in the Edit Advanced CSS File, but it always changes itself automatically. The code works though when I use inspect element in chrome to change it, is it because mal don't let us change the table separately or something? EDIT: It seems to me that if i leave the word 'table' by itself it gets removed? edit> hese's a tutorial on imports http://myanimelist.net/forum/?topicid=411779 Okay got it thanks! But why does MAL have to remove table from css code? Its so troublesome |
Jun 7, 2015 6:10 AM
#2841
Jun 7, 2015 7:34 AM
#2842
Hello there! I noticed an interesting thing - when i logged out, links in the topbar are dimmed,expect http://myanimelist.net/ my code: @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/IZoxRNl.png]http://i.imgur.com/IZoxRNl.png'); } /* OTHER CODES */ #mal_control_strip { background-position: bottom !important; top: -16px; height: 1px !important;} #mal_control_strip div {display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo { width: 26% !important; height: 0 !important; padding-bottom: 18px !important; padding-top: 27px !important; background: ; position: absolute; top:-5px; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links { width: 92px !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left: 28%; top: -7px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_links a {background-image: url('http://i.imgur.com/PAEW4Q8.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks strong{ width: 25% !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left:28%; margin-left: 130px; top: -5px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px; margin-top: 19px;} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: 15px !important; width: 135px !important} #mal_control_strip img { margin-top: 15px !important; } /* REMOVE LINES FROM MENU BAR */ #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #list_surround { position: absolute !important; right: 1px !important;} #list_surround { margin: -25px auto 0; width: 740px; } #mal_control_strip { background-color: rgba(1,1,1,.5) !important; background-image: url('http://i.imgur.com/hzPJrg4.png') !important; position:fixed; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('http://i.imgur.com/IZoxRNl.png'); } |
Jun 7, 2015 10:09 AM
#2843
i have one quick question at the all links on your list i set a text-shadow for the links but then the shadows appear on the orbs at the bottom (watching, completed, ...) how can i keep the text-shadow for the texts (watching, completed..) but remove the green shadow on the orbs? here is my code @import url(http://fonts.googleapis.com/css?family=Walter+Turncoat); @import url(http://fonts.googleapis.com/css?family=Indie+Flower); @import url(http://fonts.googleapis.com/css?family=Chewy); @import url(http://fonts.googleapis.com/css?family=Josefin+Sans); @import url(http://fonts.googleapis.com/css?family=Salsa); @import url(http://fonts.googleapis.com/css?family=Pacifico); @import url(http://pastebin.com/raw.php?i=QKaKmNrn); @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); /* body */ body { background-color: #000000; background-image: url(http://i.imgur.com/nxBZ6wu.jpg); background-attachment: fixed; background-position: right top; background-repeat: no-repeat; font-family: Salsa; font-size: 13px; letter-spacing: 1px; color: #ffffff; } /* list positioning */ #list_surround { position: left !important; padding-left: 15px !important; width: 630px; opacity: .9; } /* // all links on your list */ a { color: #ffffff; text-decoration: none; transition: color 1s linear; } a:visited { color: #ffffff; text-decoration: none; } a:hover { color: #00ffff; text-decoration: none; text-shadow: 0 0 3px #00ffff; } /* // row color */ .td1 { background-color: rgba(6, 72, 230, 0.2); padding: 6px; } .td2 { background-color: rgba(4, 3, 122, 0.2); padding: 6px; } /* // header */ .table_header { background-color: rgba(4, 3, 122, 0.2); padding: 6px; } /* // header links */ .table_headerLink { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } .table_headerLink:Visited { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } .table_headerLink:Hover { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } /* headers: watching, completed, on-hold, dropped, plan to watch */ .header_title { font-size: 30px; color: #FAAFBE; font-family: Chewy; letter-spacing: 2px; padding-bottom:10px; } /* do not remove this */ #copyright:before { content: "List style by blingbling@mal |"; } #copyright { padding-top: 6px; padding-bottom: 6px; text-align: center; } /****************************/ /* Blue Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(80, 50, 225, 0.9) !important; -moz-transition: .1s ease; -webkit-transition: .1s ease; -o-transition: .1s ease; } .category_totals { display: none !important;} #grand_totals { display: none !important;} /************************************************* * FONT * ----------------------------------------------- * This bar was designed to use Cuprum font * (imported from Google here). You can remove the * import link and set it to some other font here *************************************************/ @import url(http://fonts.googleapis.com/css?family=Cuprum&subset=latin,latin-ext); #list_surround table:first-of-type[align] td:not(fucked) a:before { font-family : Cuprum, sans-serif; } /************************************************* * AFTER-LIST MARGIN * ----------------------------------------------- * Due to fixed positioning of this it may happen * that your copyright is covered by the menu. * I therefore added this little offset to add * some empty space after your list. It may not * work even this way or might be unnecessary for * your layout. Contact me if any issues arise *************************************************/ #list_surround { margin-bottom : 57px; } /************************************************* * HANDLE COLOR * ----------------------------------------------- * Background and border of the handle *************************************************/ #inlineContent { background : hsla(260, 50%, 10%, 0.75); border : white solid; } /************************************************* * HANDLE WIDTH * ----------------------------------------------- * I'm using 1000px. And it has to be replaced in * both of these to also affect positioning. *************************************************/ #inlineContent { left : calc(50% - 1000px / 2); width : 1000px; } /************************************************* * HEADINGS TEXT * ----------------------------------------------- * This changes text that appears in bubbles on * hovering the button. There wasn't a way I * could re-use existing code so I had to dup it * in my CSS. More flexibility, anyways *************************************************/ /* OPTION: ANIME LIST */ #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { content : "Watching" } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed" } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold" } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped" } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan to Watch" } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { content : "All Anime" } /* OPTION: MANGA LIST * #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { content : "Reading" } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed" } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold" } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped" } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan to Read" } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { content : "All Manga" } /* END OPTIONS */ /************************************************* * HEADINGS THEME * ----------------------------------------------- * Colors to use for bubbles. I suggest trying out * black, and if it blends too much, use white. * The border code just *has* to be here to work. * It doesn't need to be changed. It's for small * triangles under the rounded box. *************************************************/ /* OPTION: BLACK */ #list_surround table:first-of-type[align] td:not(fucked) a:before { background-color : hsla(0, 0%, 10%, 0.8); color : hsla(0, 100%, 100%, 0.8); } #list_surround table:first-of-type[align] td:not(fucked) a:after { border : 7px solid; border-top-color : hsla(0, 0%, 10%, .8); } /* OPTION: WHITE * #list_surround table:first-of-type[align] td:not(fucked) a:before { background-color : hsla(0, 0%, 90%, 0.8); color : hsla(0, 100%, 10%, 0.8); } #list_surround table:first-of-type[align] td:not(fucked) a:after { border : 7px solid; border-top-color : hsla(0, 0%, 90%, .8); } /* END OPTIONS */ /************************************************* * ORB ICONS, COLORS, TRANSITIONS * ----------------------------------------------- * Orbs use images as masks, the color transition * is actually the background-color switching, not * the image swapping, cuz due to standards it can * not be animated. *************************************************/ /* Icons */ #list_surround table:first-of-type[align] td:not(fucked) a { background-image : url("http://i.imgur.com/uJRss3C.png"); } /* Normal color*/ #list_surround table:first-of-type[align] td:not(fucked) a { background-color : hsl(220, 30%, 50%); } /* Hover color */ #list_surround table:first-of-type[align] td:not(fucked) a:hover { background-color : hsl(80, 90%, 50%); } /* Clicked and current color */ #list_surround table:first-of-type[align] td:not(fucked) a:active, .status_selected a { background-color : hsl(110, 100%, 40%) !important; } /* Color transition */ #list_surround table:first-of-type[align] td:not(fucked) a { transition : background-color .4s linear; } /* Bubble transition */ #list_surround table:first-of-type[align] td:not(fucked) a:before, #list_surround table:first-of-type[align] td:not(fucked) a:after { transition : bottom .37s ease-in-out, opacity .4s ease-in-out; } /************************************************* * ORBS POSITION * ----------------------------------------------- * This needs to be changed if your list has * all anime category disabled *************************************************/ /* OPTION: SIX CATEGORY BUTTONS */ #list_surround table:first-of-type[align] { margin-left : -158px; } /* OPTION: FIVE CATEGORY BUTTONS * #list_surround table:first-of-type[align] { margin-left : -132px; } /* END OPTIONS */ /************************************************* * BASIC CODE * ----------------------------------------------- * This is the rest codes that I didn't categorize * Feel free to tweak it to your liking. *************************************************/ /* Handle */ #inlineContent { border-radius : 800px/100px; border-width : 3px 2px 2px; bottom : -35px; display : block !important; height : 57px; position : fixed; z-index : 100; } /* Nav panel */ #list_surround table:first-of-type[align] { bottom : 5px; display : block; left : 50%; position : fixed; width : 360px !important; z-index : 120; } /* Nav panel items */ #list_surround table:first-of-type[align] td:not(fucked) { display : inline-block; height : 42px; padding : 5px; width : 42px; } /* Nav panel links */ #list_surround table:first-of-type[align] td:not(fucked) a { display : block; border-radius : 50%; border : 2px solid white; box-shadow : inset 0 0 2px black, 0 3px 3px black; color : transparent; overflow : hidden; height : 100%; width : 100%; } /* Bubbles */ #list_surround table:first-of-type[align] td:not(fucked) a:before { -moz-box-sizing : border-box; box-sizing : border-box; pointer-events : none; border-radius : 25px; bottom : 45px; content : "error!"; display : block; font-size : small; height : 20px; margin-left : -30px; opacity : 0; overflow : hidden; padding-left : 1px; padding-top : 3px; position : fixed; width : 100px; } /* Small triangle below the bubble */ #list_surround table:first-of-type[align] td:not(fucked) a:after { bottom : 45px; content : ""; display : block; margin-bottom : -14px; margin-left : 13px; opacity : 0; position : fixed; } #list_surround table:first-of-type[align] td:not(fucked) a:hover:before, #list_surround table:first-of-type td:not(fucked) a:hover:after { bottom : 60px; opacity : 1; } /* Forcing overlay behaviour to prevent flicker */ #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { z-index : 121 } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { z-index : 122 } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { z-index : 123 } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { z-index : 124 } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { z-index : 125 } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { z-index : 126 } /* Moving the background offset to draw different icons for different categories */ #list_surround table:first-of-type[align] td:nth-of-type(1) a { background-position : 0 0; } #list_surround table:first-of-type[align] td:nth-of-type(2) a { background-position : -42px 0; } #list_surround table:first-of-type[align] td:nth-of-type(3) a { background-position : -84px 0; } #list_surround table:first-of-type[align] td:nth-of-type(4) a { background-position : -126px 0; } #list_surround table:first-of-type[align] td:nth-of-type(5) a { background-position : -168px 0; } #list_surround table:first-of-type[align] td:nth-of-type(6) a { background-position : -210px 0; } body { cursor:url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } a:hover { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } #mal_control_strip { display: none !important;} |
Jun 8, 2015 1:16 PM
#2844
Kaiwan said: i have one quick question at the all links on your list i set a text-shadow for the links but then the shadows appear on the orbs at the bottom (watching, completed, ...) how can i keep the text-shadow for the texts (watching, completed..) but remove the green shadow on the orbs? here is my code @import url(http://fonts.googleapis.com/css?family=Walter+Turncoat); @import url(http://fonts.googleapis.com/css?family=Indie+Flower); @import url(http://fonts.googleapis.com/css?family=Chewy); @import url(http://fonts.googleapis.com/css?family=Josefin+Sans); @import url(http://fonts.googleapis.com/css?family=Salsa); @import url(http://fonts.googleapis.com/css?family=Pacifico); @import url(http://pastebin.com/raw.php?i=QKaKmNrn); @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM); /* body */ body { background-color: #000000; background-image: url(http://i.imgur.com/nxBZ6wu.jpg); background-attachment: fixed; background-position: right top; background-repeat: no-repeat; font-family: Salsa; font-size: 13px; letter-spacing: 1px; color: #ffffff; } /* list positioning */ #list_surround { position: left !important; padding-left: 15px !important; width: 630px; opacity: .9; } /* // all links on your list */ a { color: #ffffff; text-decoration: none; transition: color 1s linear; } a:visited { color: #ffffff; text-decoration: none; } a:hover { color: #00ffff; text-decoration: none; text-shadow: 0 0 3px #00ffff; } /* // row color */ .td1 { background-color: rgba(6, 72, 230, 0.2); padding: 6px; } .td2 { background-color: rgba(4, 3, 122, 0.2); padding: 6px; } /* // header */ .table_header { background-color: rgba(4, 3, 122, 0.2); padding: 6px; } /* // header links */ .table_headerLink { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } .table_headerLink:Visited { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } .table_headerLink:Hover { color: #00ffff; text-decoration: none; font-family: Josefin Sans; font-size: 17px; } /* headers: watching, completed, on-hold, dropped, plan to watch */ .header_title { font-size: 30px; color: #FAAFBE; font-family: Chewy; letter-spacing: 2px; padding-bottom:10px; } /* do not remove this */ #copyright:before { content: "List style by blingbling@mal |"; } #copyright { padding-top: 6px; padding-bottom: 6px; text-align: center; } /****************************/ /* Blue Highlight on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(80, 50, 225, 0.9) !important; -moz-transition: .1s ease; -webkit-transition: .1s ease; -o-transition: .1s ease; } .category_totals { display: none !important;} #grand_totals { display: none !important;} /************************************************* * FONT * ----------------------------------------------- * This bar was designed to use Cuprum font * (imported from Google here). You can remove the * import link and set it to some other font here *************************************************/ @import url(http://fonts.googleapis.com/css?family=Cuprum&subset=latin,latin-ext); #list_surround table:first-of-type[align] td:not(fucked) a:before { font-family : Cuprum, sans-serif; } /************************************************* * AFTER-LIST MARGIN * ----------------------------------------------- * Due to fixed positioning of this it may happen * that your copyright is covered by the menu. * I therefore added this little offset to add * some empty space after your list. It may not * work even this way or might be unnecessary for * your layout. Contact me if any issues arise *************************************************/ #list_surround { margin-bottom : 57px; } /************************************************* * HANDLE COLOR * ----------------------------------------------- * Background and border of the handle *************************************************/ #inlineContent { background : hsla(260, 50%, 10%, 0.75); border : white solid; } /************************************************* * HANDLE WIDTH * ----------------------------------------------- * I'm using 1000px. And it has to be replaced in * both of these to also affect positioning. *************************************************/ #inlineContent { left : calc(50% - 1000px / 2); width : 1000px; } /************************************************* * HEADINGS TEXT * ----------------------------------------------- * This changes text that appears in bubbles on * hovering the button. There wasn't a way I * could re-use existing code so I had to dup it * in my CSS. More flexibility, anyways *************************************************/ /* OPTION: ANIME LIST */ #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { content : "Watching" } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed" } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold" } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped" } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan to Watch" } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { content : "All Anime" } /* OPTION: MANGA LIST * #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { content : "Reading" } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { content : "Completed" } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { content : "On-Hold" } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { content : "Dropped" } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { content : "Plan to Read" } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { content : "All Manga" } /* END OPTIONS */ /************************************************* * HEADINGS THEME * ----------------------------------------------- * Colors to use for bubbles. I suggest trying out * black, and if it blends too much, use white. * The border code just *has* to be here to work. * It doesn't need to be changed. It's for small * triangles under the rounded box. *************************************************/ /* OPTION: BLACK */ #list_surround table:first-of-type[align] td:not(fucked) a:before { background-color : hsla(0, 0%, 10%, 0.8); color : hsla(0, 100%, 100%, 0.8); } #list_surround table:first-of-type[align] td:not(fucked) a:after { border : 7px solid; border-top-color : hsla(0, 0%, 10%, .8); } /* OPTION: WHITE * #list_surround table:first-of-type[align] td:not(fucked) a:before { background-color : hsla(0, 0%, 90%, 0.8); color : hsla(0, 100%, 10%, 0.8); } #list_surround table:first-of-type[align] td:not(fucked) a:after { border : 7px solid; border-top-color : hsla(0, 0%, 90%, .8); } /* END OPTIONS */ /************************************************* * ORB ICONS, COLORS, TRANSITIONS * ----------------------------------------------- * Orbs use images as masks, the color transition * is actually the background-color switching, not * the image swapping, cuz due to standards it can * not be animated. *************************************************/ /* Icons */ #list_surround table:first-of-type[align] td:not(fucked) a { background-image : url("http://i.imgur.com/uJRss3C.png"); } /* Normal color*/ #list_surround table:first-of-type[align] td:not(fucked) a { background-color : hsl(220, 30%, 50%); } /* Hover color */ #list_surround table:first-of-type[align] td:not(fucked) a:hover { background-color : hsl(80, 90%, 50%); } /* Clicked and current color */ #list_surround table:first-of-type[align] td:not(fucked) a:active, .status_selected a { background-color : hsl(110, 100%, 40%) !important; } /* Color transition */ #list_surround table:first-of-type[align] td:not(fucked) a { transition : background-color .4s linear; } /* Bubble transition */ #list_surround table:first-of-type[align] td:not(fucked) a:before, #list_surround table:first-of-type[align] td:not(fucked) a:after { transition : bottom .37s ease-in-out, opacity .4s ease-in-out; } /************************************************* * ORBS POSITION * ----------------------------------------------- * This needs to be changed if your list has * all anime category disabled *************************************************/ /* OPTION: SIX CATEGORY BUTTONS */ #list_surround table:first-of-type[align] { margin-left : -158px; } /* OPTION: FIVE CATEGORY BUTTONS * #list_surround table:first-of-type[align] { margin-left : -132px; } /* END OPTIONS */ /************************************************* * BASIC CODE * ----------------------------------------------- * This is the rest codes that I didn't categorize * Feel free to tweak it to your liking. *************************************************/ /* Handle */ #inlineContent { border-radius : 800px/100px; border-width : 3px 2px 2px; bottom : -35px; display : block !important; height : 57px; position : fixed; z-index : 100; } /* Nav panel */ #list_surround table:first-of-type[align] { bottom : 5px; display : block; left : 50%; position : fixed; width : 360px !important; z-index : 120; } /* Nav panel items */ #list_surround table:first-of-type[align] td:not(fucked) { display : inline-block; height : 42px; padding : 5px; width : 42px; } /* Nav panel links */ #list_surround table:first-of-type[align] td:not(fucked) a { display : block; border-radius : 50%; border : 2px solid white; box-shadow : inset 0 0 2px black, 0 3px 3px black; color : transparent; overflow : hidden; height : 100%; width : 100%; } /* Bubbles */ #list_surround table:first-of-type[align] td:not(fucked) a:before { -moz-box-sizing : border-box; box-sizing : border-box; pointer-events : none; border-radius : 25px; bottom : 45px; content : "error!"; display : block; font-size : small; height : 20px; margin-left : -30px; opacity : 0; overflow : hidden; padding-left : 1px; padding-top : 3px; position : fixed; width : 100px; } /* Small triangle below the bubble */ #list_surround table:first-of-type[align] td:not(fucked) a:after { bottom : 45px; content : ""; display : block; margin-bottom : -14px; margin-left : 13px; opacity : 0; position : fixed; } #list_surround table:first-of-type[align] td:not(fucked) a:hover:before, #list_surround table:first-of-type td:not(fucked) a:hover:after { bottom : 60px; opacity : 1; } /* Forcing overlay behaviour to prevent flicker */ #list_surround table:first-of-type[align] td:nth-of-type(1) a:before { z-index : 121 } #list_surround table:first-of-type[align] td:nth-of-type(2) a:before { z-index : 122 } #list_surround table:first-of-type[align] td:nth-of-type(3) a:before { z-index : 123 } #list_surround table:first-of-type[align] td:nth-of-type(4) a:before { z-index : 124 } #list_surround table:first-of-type[align] td:nth-of-type(5) a:before { z-index : 125 } #list_surround table:first-of-type[align] td:nth-of-type(6) a:before { z-index : 126 } /* Moving the background offset to draw different icons for different categories */ #list_surround table:first-of-type[align] td:nth-of-type(1) a { background-position : 0 0; } #list_surround table:first-of-type[align] td:nth-of-type(2) a { background-position : -42px 0; } #list_surround table:first-of-type[align] td:nth-of-type(3) a { background-position : -84px 0; } #list_surround table:first-of-type[align] td:nth-of-type(4) a { background-position : -126px 0; } #list_surround table:first-of-type[align] td:nth-of-type(5) a { background-position : -168px 0; } #list_surround table:first-of-type[align] td:nth-of-type(6) a { background-position : -210px 0; } body { cursor:url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } a:hover { cursor: url(http://i.imgur.com/fAB3SUY.png) 1 2, auto; } #mal_control_strip { display: none !important;} just add this: td[class^="status_"] a {text-shadow: none;} at the bottom. Menius said: Hello there! I noticed an interesting thing - when i logged out, links in the topbar are dimmed,expect http://myanimelist.net/ my code: @import 'http://cdn.rawgit.com/VeriTi/cfc167199f0e60518c4c/raw/5108a26ded514663b042591b3a97f1c8f7f5567e/alpha_geometry.css'; @import 'http://cdn.rawgit.com/VeriTi/060b14917bfd586af951/raw/5cbe2d300c3bc1f269277a7d3f117b6cf8f4b3dd/alpha_topbar_redux.css'; body{ /* Set up a background image: */ background-image: url("http://i.imgur.com/vK1NamZ.jpg");"); /* Set up a point of transformation. This is the point * of image that should always be at the top and * preserve it's location at these offsets. * If you don't understand how it works, 50% 50% should * be ok in most cases. Default: point to Okabe's face. */ background-position: 60% 18%; /* Set up fonts you want to use and preferred basic size. * It will look for the first font at the list, then for * the second, etc. The last parameter describes a generic * font family, which will be used if none of the fonts are * on the user PC. The size can be also set using keywords * like xx-small, google for font-size if you want more info */ font-family: 'Segoe UI', 'Century Gothic', sans-serif; font-size: 11px; } /*LIST HOVER COLOR This configures the look of the part with sort links: * the border and the background. * Colors are in rgba format which means first three values * define a color in Red-Green-Blue mode and the last one * sets up an opacity of the color: rgba(R,G,B,a) * Use color picker in Photoshop (or other image editor), * Opera Dragonfly or Rainbow Firefox extension to get desired * RGB values and then play with opacity until you get what you * wanted. */ tr:hover [class^=td] { background-color: rgba(4, 150, 100, 0.9) !important; } .table_header{ background-color: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.25); } .table_header, .table_headerLink{ /* Color of the sort links. I used short hex notation here but * you may use whatever you want, rgb, rgba or full-hex. This * won't be mentioned below, the way to change colors is the same */ color: #FFF; /* Remove the following line if you want links to be underlined */ text-decoration: none; } .table_headerLink:hover{ /* This configures a light white glow on hovered links * Changing colors should be enough here so I'll leave it for you. * It's the same rgba we've encountered. */ text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px; } /* The look of the rest of the * Configures background, border and text color for non-links * I made it a bit more opaque than sorting headers */ .td1, .td2{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); color: #FFF; } /* This is for the links in the rest of the */ .td1 a, .td2 a{ text-decoration: none; /* Removes underline for these */ color: #ffc700; /* Paints links orange */ } /* Glow effect on link hover. The same text-shadow property */ .td1 a:hover, .td2 a:hover{ text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px; } /* This makes all text ins bold except for Edit - More */ #list_surround td[class^=td]:first-child, #list_surround td[class^=td]:nth-child(n+3), .animetitle{font-weight:bold} /* CSS sprite for Currently Watching, Completed, Dropped, etc... * Note there is only one image used for all headers. I've made an * inverted version for bright layouts: * http://i.imgur.com/VImNB.png * or you can make one yourself. It's not that difficult. */ .header_title{ background-image: url(http://i.imgur.com/VImNB.png); } /* Block displaying category totals * It's redesigned to be the part of the layout * and you've already encountered all the properties here * so it won't be hard for you to customise this. * Note that a different shadow colors used for glow effect */ .category_totals{ background-color: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.25); color: #fff; font-weight: bold; text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px; } /* Text displaying global totals */ #grand_totals{ color: #fff; font-size: larger; font-weight: bold; text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px; /* The following line makes it ALL-CAPS */ text-transform: uppercase; } /* Modifying copyright section. It's designed to look similar * to the whole layout, ok? */ #copyright{ background-color: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.25); } #copyright:after { content: " Custom CSS by Veriti."; } /* Modifying the text color in copyright section */ #copyright, #copyright a{ color: #FFF; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('[url=http://i.imgur.com/IZoxRNl.png]http://i.imgur.com/IZoxRNl.png'); } /* OTHER CODES */ #mal_control_strip { background-position: bottom !important; top: -16px; height: 1px !important;} #mal_control_strip div {display:inline} #mal_cs_pic img {height: 24px !important; width: auto !important} #mal_cs_listinfo { width: 26% !important; height: 0 !important; padding-bottom: 18px !important; padding-top: 27px !important; background: ; position: absolute; top:-5px; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} #mal_cs_listinfo div:last-of-type a {text-decoration: none} #mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} #mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} #mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} #mal_cs_links { width: 92px !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left: 28%; top: -7px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_links a {background-image: url('http://i.imgur.com/PAEW4Q8.png') !important;width:16px;height:16px;content:none; display: inline-block !important;color: transparent !important; letter-spacing: -1ex;font-size:xx-small} #mal_cs_links div:first-of-type:after {content: 'a0'} #mal_cs_links div:first-of-type a:first-of-type {background-position: 0px 0px} #mal_cs_links div:first-of-type a:last-of-type {background-position: -16px 0px} #mal_cs_links div:last-of-type a:first-of-type {background-position:-32px 0px} #mal_cs_links div:last-of-type a:last-of-type {background-position:-48px 0px} #mal_cs_otherlinks strong{ width: 25% !important; height: 0 !important; padding-bottom: 20px !important; padding-top: 27px !important; left:28%; margin-left: 130px; top: -5px; position: absolute; border-right-color: rgba(0,0,0,0.8) !important;} #mal_cs_otherlinks div:last-of-type {float:right;padding-right:150px; margin-top: 19px;} #mal_cs_otherlinks div:first-of-type {float:left} #mal_cs_powered img {display:none} #searchBox {margin-top: 15px !important; width: 135px !important} #mal_control_strip img { margin-top: 15px !important; } /* REMOVE LINES FROM MENU BAR */ #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { border-right: 0 none !important; } #list_surround { position: absolute !important; right: 1px !important;} #list_surround { margin: -25px auto 0; width: 740px; } #mal_control_strip { background-color: rgba(1,1,1,.5) !important; background-image: url('http://i.imgur.com/hzPJrg4.png') !important; position:fixed; } /* Configures a CSS sprite for the bar at the bottom */ .status_not_selected a, .status_selected a{ background-image: url('http://i.imgur.com/IZoxRNl.png'); } I don't see a difference when logged out. |
Jun 9, 2015 6:41 PM
#2846
Hi, how i can hide the - between Edit & More? I just want to hide it, possible? |
Jun 11, 2015 11:08 AM
#2847
Should it look like that? as you can see the "currently watching, completed, dropped" bar is a bit to the middle, and the Progress jumps out of bounds. I did not change anything in this layout, besides adding the covers. It just looks a bit off, even when I take the covers code out, so maybe it's not only for me. Here's the original topic http://myanimelist.net/forum/?topicid=1099375&show=120#msg38415193 |
Jun 11, 2015 11:30 AM
#2848
Hello, i have a quick question. On my list, when the type of anime is "special" it changes the position of the other elements .. check nº9 of completed ones .. http://myanimelist.net/animelist/Visceras How do I change it ? Do I have to change the size of the letters or the padding between them .. i've tried to make it by myself and it didn´t work out. Here it is the css @import url(http://storage.live.com/items/4A07C1EEED420167%21162); @import url(http://fonts.googleapis.com/css?family=Cinzel+Decorative); @import"https://dl.dropboxusercontent.com/s/7re8iafoomkwh8b/asaslas.css?dl=0"; /* MAIN BACKGROUND */ body { background-attachment: fixed; background-color: black; background-image:url(http://imageshack.com/a/img540/9539/dfixQA.jpg); background-position: center-left; background-repeat: no-repeat; background-size: cover; } .table_header:first-of-type { border-radius: 15px 0px 0px 0px; } .table_header:last-of-type { border-radius: 0px 15px 0px 0px; } /* FONTS */ .animetitle, .animetitle:visited { color: #FFFFFF; font-family:Verdana, Arial; font-size: 13px; text-decoration: none; } .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color: #FFFFFF; font-family:Verdana, Arial; text-decoration: none !important; } .status_selected a { color: white; } .status_not_selected a { color: ; } /* OTHER CODES */ .td2 { background-color: transparent; } .td1, .td2, a:hover, { color: black !important; } .header_title { color: #A00000; font-family: Georgia, serif; font-size: 35px; padding: 20px important!; margin-bottom: 0px important!; padding-bottom: 0px important!; } .table_header { color: #000000; padding: 6px; } #list_surround { width: 620px; right: 20px !important; position: absolute !important; top: 32px; } a:hover, a:visited:hover { color: coral; } .category_totals, .td1, .td2, #grand_totals, #copyright { padding: 6px; } .thickbox { color: cyan; font-family: fantasy; font-size: 12px; } .header_title { height: 55px; padding: 8px; padding-bottom: 5px; } .table_header { border-width: 0; font-weight: normal; padding-right: 6px; } .category_totals { height: 20px; font-size: 11px; color: #FFFFFF; font-style: bold; } .category_totals:hover{ background: rgba(90, 16, 60, 0.7) !important; } #copyright, #grand_totals { margin: 0 auto; text-align: center; background-color: rgba(95, 1, 25, 0.7) !important; font-size: 14px; } /* Start http://www.cursors-4u.com */ body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-1/cur76.cur), progress !important;} /* End http://www.cursors-4u.com */ /* CURRENTLY WATCHING HEADER */ .header_cw { background-image:url(http://imageshack.com/a/img661/6939/ZPCEVE.png); height: 200px; margin-bottom: -50px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* COMPLETED HEADER */ .header_completed { background-image:url(http://imageshack.com/a/img537/2153/WWDimi.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* ON-HOLD HEADER */ .header_onhold { background-image:url(http://imageshack.com/a/img537/9201/Puomwi.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } / DROPPED HEADER */ .header_dropped { background-image:url(http://imageshack.com/a/img908/1615/pmL7mt.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER */ .header_ptw { background-image:url(http://imageshack.com/a/img538/6407/rPfSMV.png); height: 150px; margin-bottom: -40px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR */ .header_title { background-color: transparent !important; } /* OTHER CODES */ tbody {background-color: trasparent; background-image: none;} /* REMOVE HEADER TEXT */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } /* LIST BACKGROUND COLOR AND OPACITY */ .td1 { background-color: rgba(95, 1, 25, 0.7) !important; } .td2 { background-color: rgba(95, 1, 25, 0.7)!important; } .table_header{ background: rgba(75, 1, 45, 0.7) !important; font-size: 15px !important font-style: none; } .category_totals{ background: rgba(75, 1, 45, 0.7) !important; } /****************************/ /* Silver highlight and font resize on Hover */ /****************************/ tr:hover td.td1, tr:hover td.td2 { font-size: 16px !Important; -moz-transition: .4s ease; -webkit-transition: .4.5s ease; -o-transition: .4s ease; } tr:hover [class^="td"] { background-color: rgba(65, 1, 15, 0.8)!important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } /* COVER AREA */ .hide { background-size: cover; left: 30px; top: 70px; height: 330px; width: 220px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 15px 15px 15px 15px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } .hide:before { color: trasnparent; padding-bottom: 5px; width: 50px; top: 30px; left: 70px; border-radius: 25px 25px 0 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; transition: opacity .2s linear; -moz-transition: opacity .2s linear; -webkit-transition: opacity .2s linear; } .hide{ box-shadow: 5px 5px 5px 1px; -webkit-box-shadow: 5px 5px 5px 1px; } .animetitle + small { color: rgba(220, 220, 220, 1) !important; font-weight: ; text-shadow: 0 0 2px #660066 , 0 0 1px #000000 , 0 1px 7px #FFFFFF, 0 0 0 #000000; visibility: visible !important; letter-spacing:0.5px; } /* Animetitle header width */ .table_header:nth-of-type(2) { height: 26px; } |
Jun 11, 2015 12:10 PM
#2849
Visceras said: It is caused by the list being to narrow. you can fix it by setting absolute widths for the different table cells. sadly I do not have a computer that's good for CSS editing availible at the moment so I can't help you directly.Hello, i have a quick question. On my list, when the type of anime is "special" it changes the position of the other elements .. check nº9 of completed ones .. http://myanimelist.net/animelist/Visceras How do I change it ? Do I have to change the size of the letters or the padding between them .. i've tried to make it by myself and it didn´t work out. Here it is the css @import url(http://storage.live.com/items/4A07C1EEED420167%21162); @import url(http://fonts.googleapis.com/css?family=Cinzel+Decorative); @import"https://dl.dropboxusercontent.com/s/7re8iafoomkwh8b/asaslas.css?dl=0"; /* MAIN BACKGROUND */ body { background-attachment: fixed; background-color: black; background-image:url(http://imageshack.com/a/img540/9539/dfixQA.jpg); background-position: center-left; background-repeat: no-repeat; background-size: cover; } .table_header:first-of-type { border-radius: 15px 0px 0px 0px; } .table_header:last-of-type { border-radius: 0px 15px 0px 0px; } /* FONTS */ .animetitle, .animetitle:visited { color: #FFFFFF; font-family:Verdana, Arial; font-size: 13px; text-decoration: none; } .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright { color: #FFFFFF; font-family:Verdana, Arial; text-decoration: none !important; } .status_selected a { color: white; } .status_not_selected a { color: ; } /* OTHER CODES */ .td2 { background-color: transparent; } .td1, .td2, a:hover, { color: black !important; } .header_title { color: #A00000; font-family: Georgia, serif; font-size: 35px; padding: 20px important!; margin-bottom: 0px important!; padding-bottom: 0px important!; } .table_header { color: #000000; padding: 6px; } #list_surround { width: 620px; right: 20px !important; position: absolute !important; top: 32px; } a:hover, a:visited:hover { color: coral; } .category_totals, .td1, .td2, #grand_totals, #copyright { padding: 6px; } .thickbox { color: cyan; font-family: fantasy; font-size: 12px; } .header_title { height: 55px; padding: 8px; padding-bottom: 5px; } .table_header { border-width: 0; font-weight: normal; padding-right: 6px; } .category_totals { height: 20px; font-size: 11px; color: #FFFFFF; font-style: bold; } .category_totals:hover{ background: rgba(90, 16, 60, 0.7) !important; } #copyright, #grand_totals { margin: 0 auto; text-align: center; background-color: rgba(95, 1, 25, 0.7) !important; font-size: 14px; } /* Start http://www.cursors-4u.com */ body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-1/cur76.cur), progress !important;} /* End http://www.cursors-4u.com */ /* CURRENTLY WATCHING HEADER */ .header_cw { background-image:url(http://imageshack.com/a/img661/6939/ZPCEVE.png); height: 200px; margin-bottom: -50px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* COMPLETED HEADER */ .header_completed { background-image:url(http://imageshack.com/a/img537/2153/WWDimi.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* ON-HOLD HEADER */ .header_onhold { background-image:url(http://imageshack.com/a/img537/9201/Puomwi.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } / DROPPED HEADER */ .header_dropped { background-image:url(http://imageshack.com/a/img908/1615/pmL7mt.png); height: 150px; margin-bottom: -35px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* PLAN TO WATCH HEADER */ .header_ptw { background-image:url(http://imageshack.com/a/img538/6407/rPfSMV.png); height: 150px; margin-bottom: -40px; background-color: transparent; background-repeat: no-repeat; background-position: center center; color:; font-family:; font-size:; } /* REMOVE HEADER COLOR */ .header_title { background-color: transparent !important; } /* OTHER CODES */ tbody {background-color: trasparent; background-image: none;} /* REMOVE HEADER TEXT */ .header_title { color: gray !important; color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } /* LIST BACKGROUND COLOR AND OPACITY */ .td1 { background-color: rgba(95, 1, 25, 0.7) !important; } .td2 { background-color: rgba(95, 1, 25, 0.7)!important; } .table_header{ background: rgba(75, 1, 45, 0.7) !important; font-size: 15px !important font-style: none; } .category_totals{ background: rgba(75, 1, 45, 0.7) !important; } /****************************/ /* Silver highlight and font resize on Hover */ /****************************/ tr:hover td.td1, tr:hover td.td2 { font-size: 16px !Important; -moz-transition: .4s ease; -webkit-transition: .4.5s ease; -o-transition: .4s ease; } tr:hover [class^="td"] { background-color: rgba(65, 1, 15, 0.8)!important; -moz-transition: .4s ease; -webkit-transition: .4s ease; -o-transition: .4s ease; } /* CODES (REPLACEMENT FOR "CSS FOR FOXGIRLS" IMPORT) */ #list_surround table:nth-of-type(n+4):hover td:nth-of-type(3), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(4), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(5), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(6), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(7), #list_surround table:nth-of-type(n+4):hover td:nth-of-type(8) { display: table-cell; } #list_surround small a:last-of-type { display: none !important; } .animetitle + small { visibility: visible !important; } #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"], #list_surround a[href*="http://myanimelist.net/editlist.php?type="], #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] { visibility: visible !important; margin-right: 10px } .td1:nth-of-type(6) small, .td2:nth-of-type(6) small, .td1:nth-of-type(5) small, .td2:nth-of-type(5) small, .td1:nth-of-type(4) small, .td2:nth-of-type(4) small { visibility: visible !important; } .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover, .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover, .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{ text-decoration: underline; } /* COVER AREA */ .hide { background-size: cover; left: 30px; top: 70px; height: 330px; width: 220px; padding-bottom: 0px; border-style: solid; border-color: white; border-top: 1px solid white;; border-left: 1px solid white; border-right: 1px solid white; border-bottom: 1px solid white; border-radius: 15px 15px 15px 15px; background-color: rgba(200, 5, 200, 0.75); background-position: center 50% !important; background-repeat: no-repeat !Important; display: block !important; position: fixed; visibility: hidden; opacity: 0; } .hide:before { color: trasnparent; padding-bottom: 5px; width: 50px; top: 30px; left: 70px; border-radius: 25px 25px 0 0; } /* OTHER SETTINGS */ :hover + .hide { visibility: visible; opacity: 1; transition: opacity .2s linear; -moz-transition: opacity .2s linear; -webkit-transition: opacity .2s linear; } .hide{ box-shadow: 5px 5px 5px 1px; -webkit-box-shadow: 5px 5px 5px 1px; } .animetitle + small { color: rgba(220, 220, 220, 1) !important; font-weight: ; text-shadow: 0 0 2px #660066 , 0 0 1px #000000 , 0 1px 7px #FFFFFF, 0 0 0 #000000; visibility: visible !important; letter-spacing:0.5px; } /* Animetitle header width */ .table_header:nth-of-type(2) { height: 26px; } |
Jun 11, 2015 5:40 PM
#2850
Visceras said: Hello, i have a quick question. On my list, when the type of anime is "special" it changes the position of the other elements .. check nº9 of completed ones .. http://myanimelist.net/animelist/Visceras How do I change it ? Do I have to change the size of the letters or the padding between them .. i've tried to make it by myself and it didn´t work out. .td1:nth-child(4), .td2:nth-child(4) { width: 60px; } |
More topics from this board
» 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 |
|
» How To Have Different Banner/Cover image & Background Image For Manga & Anime ListsYasminaRegina - Jul 25 |
2 |
by YasminaRegina
»»
Jul 26, 1:02 AM |
|
Sticky: » 💚 [REPAIR STICKY] Repair/speed up layouts + Request layout fixes ( 1 2 )Shishio-kun - Nov 17, 2023 |
52 |
by LucaBalsa
»»
Jul 6, 2:02 PM |