New
Apr 26, 2014 8:55 AM
#1901
I wanted to change the picture i had at the about me section but i couldn't!I think the problem is in the bolded area...!I added the img code not the html but this < > shows up in the midle of the link when i click save settings! http://i60.tinypic.com/290xwn9.jpg |
zoroppApr 26, 2014 9:30 AM
Apr 26, 2014 9:44 AM
#1902
zoropp said: Crave recently broke the bbcode on the about mes and there is currently no fix for itI wanted to change the picture i had at the about me section but i couldn't!I think the problem is in the bolded area...!I added the img code not the html but this < > shows up in the midle of the link when i click save settings! http://i60.tinypic.com/290xwn9.jpg |
Apr 26, 2014 5:17 PM
#1905
If there's an image with how could I cut just the text out and leave everything else I tried using a eraser then filling in the white, but I was wondering if there is a faster way with Gimp, or whatever else. The words and image have lots of different shadings so the way I did wasn't really good. |
Apr 26, 2014 6:14 PM
#1906
disclaimer - it's been a really long time since I tinkered with my profile and I didn't know css really at all before then, so at this point I'm css illiterate (I can't even be bothered to fix a problem that for some reason cropped up in my list style recently) I hesitate to ask this since I think it seems impossible, but is there any way to code for a little icon you could toggle on and off in your lists to designate which items are favorites? purely aesthetic purposes |
Apr 29, 2014 7:57 PM
#1907
Could anyone tell me if it is possible to change rating system so it is possible to rate an anime with scores likes 5.5, 7.5 ,9.5 and if it is possible then how? thank you. |
The real world is past the virtual world is future. |
Apr 30, 2014 4:47 AM
#1908
Apr 30, 2014 4:49 AM
#1909
BrazenNegro said: You cant ad such an option it has to be hardcoded.disclaimer - it's been a really long time since I tinkered with my profile and I didn't know css really at all before then, so at this point I'm css illiterate (I can't even be bothered to fix a problem that for some reason cropped up in my list style recently) I hesitate to ask this since I think it seems impossible, but is there any way to code for a little icon you could toggle on and off in your lists to designate which items are favorites? purely aesthetic purposes |
Apr 30, 2014 3:58 PM
#1910
Hello, I have some problems I need to fix ,appreciate any help. First my top bar goes higher when I m logged out (see picture below) Second (not very important) with chrome there is small gap on hover highlight which is done by this code: ( in the CSSforFoxgirls 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; } helping image Oh yeah I have one more problem on chrome. the text 'Sort_By' is done with the content code and if don't put the underline "_" instead of "space" the text is seperated in two line the 'sort' above and the 'by' below. Thanx for your time. list: http://myanimelist.net/animelist/fireandrew |
May 1, 2014 5:02 AM
#1911
Here is your code with fixes: /*TOP BAR*/ @import "https://dl.dropboxusercontent.com/s/osgqlwua0qe1sza/top%20bar.css"; /*=======================================================================*/ /*COVERS*/ /*Display Covers*/ @import "https://dl.dropboxusercontent.com/s/96kmfggw3umrhcu/Covers.css"; /*Hover Settings*/ @import "https://googledrive.com/host/0BxjwQr0BBXs-d3FsNkY4amVQU0U"; /*Anime Cover Images*/ @import "https://dl.dropboxusercontent.com/u/78340470/anime.css"; /*=======================================================================*/ /*CUSTOM CATEGORY LINKS*/ @import "https://dl.dropboxusercontent.com/s/o8b7z0q0c82o3ft/TabLinks.css"; /*=======================================================================*/ /*HEADERS*/ @import "https://dl.dropboxusercontent.com/s/gwtajsybe2nevdv/Headers.css"; /*=======================================================================*/ /*BACKGROUNDS*/ @import "https://dl.dropboxusercontent.com/s/4n1fdl86gswqof3/Backgrounds.css"; /*=======================================================================*/ /*SORT LIST*/ /*=========TYPES HEADERS=========*/ /* 1-># | 2->Anime-Name | 3->Score | 4->Type | 5->Progress | 6->Rated */ #list_surround > table:nth-of-type(n+4) ~ .header_cw + table, #list_surround > table:nth-of-type(n+4) ~ .header_completed + table, #list_surround > table:nth-of-type(n+4) ~ .header_onhold + table, #list_surround > table:nth-of-type(n+4) ~ .header_dropped + table, #list_surround > table:nth-of-type(n+4) ~ .header_ptw + table { display: none; } .header_cw + table, .header_completed + table, .header_onhold + table, .header_dropped + table, .header_ptw + table { position: absolute; right: 56px; top: -40px; width: 350px; table-layout: fixed; border-spacing: 8px 0; } .table_header:first-of-type { display:none; } .table_headerLink strong:after { position: absolute; display: block; content: "Sort By:"; top: -6px; margin-left: -64px; font-size: 14px; color: White; font-weight: bold; text-shadow: -1px -1px 0 #000, 0px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000; background-color: rgb(50, 50, 50); padding: 7px 404px 6px 5px; border-radius: 5px; white-space: nowrap; z-index:-1; } .table_headerLink strong:before, .table_header:nth-of-type(3) a, .table_header:nth-of-type(4) a, .table_header a:before { display: block; width: 64px; padding: 0 5px; font-size: 14px; text-align: center; border-style: solid !important; border-width: 1px; border-color: #FFFFFF; background-color: rgb(0, 0, 0); border-radius: 10px; } .table_headerLink strong, .table_header:nth-of-type(5) a, .table_header:nth-of-type(6) a { color: transparent; font-size: 0; } .table_headerLink strong:before, .table_header a:before { color: #FFFFFF; font-size: 14px; } .table_headerLink strong:before { content: "Name"; } .table_header:nth-of-type(5) a:before { content: "Episodes"; } .table_header:nth-of-type(6) a:before { content: "Rating"; } .table_headerLink strong:hover:before, .table_header:nth-of-type(3) a:hover, .table_header:nth-of-type(4) a:hover, .table_header a:hover:before { color: black; background-color: white; border-color: white; } .table_headerLink strong:before { margin-left: -6px; } .table_header:nth-of-type(3) a { margin-left: -22px; } .table_header:nth-of-type(4) a { margin-left: 4px; } .table_header:nth-of-type(5) a:before { margin-left: 25px; } .table_header:nth-of-type(6) a:before { margin-left: 26px; } /*=======================================================================*/ /*Hover Settings*/ #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 } /*MAIN*/ /*==============================FONTS=====================================*/ /*===ANIME TITLE FONTS===*/ .animetitle, .animetitle:visited { color:silver;/*#66CCFF*/ font-family:Century Gothic; font-size:16px; font-weight: bold; text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000; } /*===NOT ANIME TITLES FONTS===*/ a, a:visited, .td1, .td2, .table_header, .category_totals, #grand_totals, #copyright { color:white; font-family:Century Gothic; } /*=======================================================================*/ /*===LIST WIDTH++===*/ #list_surround { width:600px; right: 10px !important; position: absolute !important; top: 50px; border-radius: 25px; } /*===LIST BACKGROUND===*/ .td1,.td2, .category_totals, #grand_totals,#copyright { background-color: rgba(0, 0, 0, 0.50); } /*=======================================================================*/ /*===COPYRIGHTS ETC===*/ .category_totals { border-top: 1px solid #000; font-size:14px ; text-align: center; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } #copyright, #grand_totals { text-align: center; margin: 0 !important; font-size:12px; } #copyright { border-top: 1px solid #000; border-radius: 0px 0px 25px 25px } /*===WHATEVER THIS IS===*/ .header_title { color: transparent !important; font-size: 0 !important; } .thickbox { color: transparent !important; font-size: 1px !important; font-size: 0px !important; font-size: 0 !important; font-size: 0pt !important; } /*=============================HOVER=====================================*/ /*==="EDIT" SHOWS ON HOVER===*/ #list_surround small { visibility: hidden; } #list_surround small a:last-of-type { display: none; } #list_surround tr:hover .animetitle + small, #list_surround tr:hover small a:first-of-type { visibility: visible; } /*===LIST HOVER===*/ a:hover , a:visited:hover { color:red; text-decoration:none; } .td1:HOVER,.td2:HOVER,.category_totals:HOVER,#grand_totals:HOVER,#copyright:HOVER { background-color: rgba(255,0, 0, 0.50); } tr:hover [class^=td] { background-color: rgba(255,0, 0, 0.50); -moz-transition: .4s ease; -webkit-transition: .4s ease; -transition: .4s ease; } /*=======================================================================*/ /*=======================================================================*/ /*CURSOR*/ /* Start http://www.cursors-4u.com */ body { cursor: url(http://cur.cursors-4u.net/cursors/cur-11/cur1054.cur), progress !important; } a:hover { cursor: url(http://cur.cursors-4u.net/cursors/cur-11/cur1049.cur), progress !important; } /* End http://www.cursors-4u.com */ /*==============================FIXES======================================*/ /*===UNDERLINE FIX===*/ a { text-decoration:none; } /*===REMOVE GAP ON TOP OF LIST===*/ #list_surround br { display: none !important; } /*=======================================================================*/ |
May 1, 2014 8:33 AM
#1912
May 8, 2014 8:56 AM
#1913
I found a counter generator at http://gaf210.imvustylez.net/codes/generators/countdown-generator-lang-eng But, it is for html. So I copied the code and converted at http://www.seabreezecomputers.com/html2bbcode/ Unfortunately, that didn't work and all I got was a wall of text #countdown_container{font-family:'Codystar', cursive;width:255px;height:253px;background:url("http://gaf210.imvustylez.net/images/countdown-gaf210codes-xsinfullxangelx.png") top center no-repeat;margin: 0px auto;color: #6666FF;}.countdown_box{overflow:hidden;position:absolute;text-align:center;}.countdown_number{margin-top:83px;width:35px;height:34px;font-size:20px;text-align:center;}#countdown_days{margin-left: 51px;}#countdown_hours{margin-left: 91px;}#countdown_mins{margin-left: 130px;}#countdown_secs{margin-left: 168px;}#countdown_bottompart{margin-left: 49px;margin-top: 142px;width: 153px;height: 61px;font-size:20px;color: #8888FF;}[code2]/*courtesy of onlineclock.net*/ countdown_dateFuture=new Date(2005,3,03,0,0,0);function countdown_UpdateCount(){dateNow=new Date();timediff=Math.abs(countdown_dateFuture.getTime() - dateNow.getTime());delete dateNow;if(timediffHappily Married! If anyone knows how to fix it, any help would be greatly appreciated! Thank you! |
May 10, 2014 12:05 AM
#1914
@RachelPanda This is JavaScript and HTML based countdown. You can use neither on your profile so there is no way to make it work. |
![]() |
May 10, 2014 2:23 PM
#1915
Hi guys, I'm having a problem customizing my anime list. I set the width of my list to 823px, but it comes out quite a bit bigger than that. I take a screenshot and measure it and the list is about 1029px wide. I also have the list set to 274px from the right, but it has ended up about 342px from the right. I have this website's zoom at 100%, so that can't be the issue. Could someone please help me figure this out? |
PandaJerk007May 10, 2014 2:30 PM
May 10, 2014 9:05 PM
#1916
Here is your code @import "https://dl.dropboxusercontent.com/u/78340470/anime.css"; @import "http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css"; /* 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://img72.imageshack.us/img72/8517/konachancom57453beachbl.jpg); background-attachment: fixed; background-size: cover; background-position: center top; } /* 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: rgba(255, 255, 255, 0.0); color: rgba(255, 255, 255, 0.9); font-family: Lucida Grande; font-size:200%; } /* 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.8); } /* 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: rgba(255, 255, 255, 1.0); font-family: Lucida Grande; font-size:90%; } /* 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: rgba(255, 255, 255, 1.0); font-family: Lucida Grande; font-size:95%; } /* 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. */ /*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: rgba(0, 0, 0, 1.0); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color: rgba(255, 255, 255, 1.0); text-decoration:underline; } .category_totals, .td1, .td2, #grand_totals, #copyright { background-image:url(http://img15.imageshack.us/img15/228/frame6518.png); padding:2px; } .category_totals:HOVER, .td1:HOVER, .td2:HOVER, #grand_totals:HOVER, #copyright:HOVER {background-color: rgba(0, 0, 0, 1.0); padding:2px; } .status_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); text-decoration: blink; } .status_not_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); } .status_selected a{ color: rgba(168, 168, 168, 1.0); } .status_not_selected a{ color: rgba(255, 255, 255, 1.0); } .thickbox { color: rgba(168, 168, 168, 1.0); font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; text-align: center; } .table_header { font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } #list_surround { position: relative !important; left: 100%; margin-left: -1138px; width: 864px; } /****************************/ /* Highlight Row on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(168, 168, 168, 0.9) !important; -moz-transition: .3s ease; -webkit-transition: .3s ease; transition: .3s ease; } /* LIST BACKGROUND COLOR AND OPACITY Go to this page for instructions on customizing this part, under: Changing the list background color + opacity of the list background http://myanimelist.net/forum/?topicid=440525 The codes control the list in this order: odd numbered rows, even numbered rows, category totals, grand totals, copyright. */ .td1 { background: none repeat scroll 0 0 rgba(84, 84, 84, 0.8) !important; } .td2 { background: none repeat scroll 0 0 rgba(128, 128, 128, 0.8) !important; } .category_totals { background: none repeat scroll 0 0 rgba(64, 64, 64, 0.8) !important; } #grand_totals { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8) !important; } #copyright { background: none repeat scroll 0 0 rgba(64, 64, 64, 0.0) !important; } /* SIDE IMAGES Change the two characters on the sides out here. The left background image URL is for characters on the left side. The right is for the right. Use the topic for more info: http://myanimelist.net/forum/?topicid=450489&show=0#post1 Change their spacing from left to right by replacing left or right with a % amount (like 70%), after background positioning. You can also lower/increase the margin part -600px, or the width. */ #inlineContent { background-image: url("http://img684.imageshack.us/img684/2439/kaguyarender5.png"), url("http://img6.imageshack.us/img6/304/patchoulibook6.png"); width: 1285px !important; margin: 0 0 0 -600px !important; background-attachment: scroll !important; background-clip: border-box !important; background-color: transparent !important; background-origin: padding-box !important; background-position: left top, right top !important; background-repeat: no-repeat !important; background-size: contain !important; bottom: 0 !important; display: inline-block !important; height: 600px !important; left: 50% !important; position: fixed !important; z-index: -1; } /* 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:53px; width:35px; margin-left:38px; margin-top:-61px; border:1px solid #FFFFFF; background-color:rgba(255, 255, 255, 0.7); background-position:50% 50%; background-repeat:no-repeat no-repeat; background-size:cover; border-radius: 7px 0 7px 7px; 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:-274px; padding-right:25%; padding-top:33% !important; background-color:transparent; background-repeat:no-repeat no-repeat; background-size:cover; border-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: 350px; 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 .25s ease-in-out; transition:all .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; } /* BORDERS */ .table_header { border-style: solid; border-color: rgba(255, 255, 255, .8); border-width: 0 1px 1px 0 !important; } .table_header:first-child { border-left: 1px solid rgba(255, 255, 255, .8) !important; border-radius: 16px 0 0; } .table_header:last-child { border-radius: 0 16px 0 0; } .td1, .td2 { border-right: 1px solid rgba(255, 255, 255, .8); } td[class^='td']:first-child { border-left: 1px solid rgba(255, 255, 255, .8) !important; } .category_totals{ border-color: rgba(255, 255, 255, 0.8); border-style: solid; border-width: 1px 1px 1px; } |
May 11, 2014 9:22 AM
#1917
May 11, 2014 10:18 AM
#1918
LonelyWizard said: i want to change image in one of the sidebars.but when i upload my image the edges are white because of the shape of the bar and background. how can i upload the image without white edges.seems like its solution is so simple but i couldnt solve it Sounds like the image uploaded was a JPG and not a GIF or PNG with transparent background, like the originals are. Can't confirm it cuz you didn't post any examples of the problem or link to the images.... |
May 11, 2014 6:04 PM
#1919
my bad, i didnt knew i had to make it png :I... and http://myanimelist.net/forum/?topicid=605019 i liked the design of this one so tried to change and use it.but i cant change the images of the side boxes(watching,completed,on-hold)...is there an easy way to do it or does it require the code to start from 0? |
May 11, 2014 9:24 PM
#1920
LonelyWizard said: my bad, i didnt knew i had to make it png :I... and http://myanimelist.net/forum/?topicid=605019 i liked the design of this one so tried to change and use it.but i cant change the images of the side boxes(watching,completed,on-hold)...is there an easy way to do it or does it require the code to start from 0? You don't have to start it over. Look in the code for the link to the pic(s) of the buttons. There seem to be a lot of links. I think you can just replace those with your own version |
May 11, 2014 9:32 PM
#1921
I have several small changes I'd like to make to my anime list. Could someone please help me do any/all of the following? (This picture will also help explain: http://i950.photobucket.com/albums/ad350/PandaJerk007/Screenshot74.png) Get rid of the "Add" button for people viewing my list. Round the corners of the "Currently Watching" and "All Anime" bar. Center the text "Anime Title" in its column. Center the names of the anime between the right side of the thumbnails, and the right side of the column. |
PandaJerk007May 11, 2014 9:45 PM
May 11, 2014 11:14 PM
#1922
@PanaJerk007 Get rid of the "Add" button for people viewing my list. div[style="float: right;"] { display: none; } Round the corners of the "Currently Watching" and "All Anime" bar. #list_surround table:first-of-type td:first-child { border-radius: 20px 0 0 20px; } #list_surround table:first-of-type td:last-child { border-radius: 0 20px 20px 0; } Center the text "Anime Title" in its column. .table_header { text-align: center; } Center the names of the anime between the right side of the thumbnails, and the right side of the column. .td1:nth-child(2), .td2:nth-child(2) { text-align: center } |
![]() |
May 12, 2014 5:32 AM
#1923
Shishio-kun said: LonelyWizard said: my bad, i didnt knew i had to make it png :I... and http://myanimelist.net/forum/?topicid=605019 i liked the design of this one so tried to change and use it.but i cant change the images of the side boxes(watching,completed,on-hold)...is there an easy way to do it or does it require the code to start from 0? You don't have to start it over. Look in the code for the link to the pic(s) of the buttons. There seem to be a lot of links. I think you can just replace those with your own version its not working.its a little different from others.in this one all links contain one same image and when i replace it it doesnt show the image: http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons2_zpsa4f0528c.png |
May 12, 2014 9:02 AM
#1924
LonelyWizard said: Shishio-kun said: LonelyWizard said: my bad, i didnt knew i had to make it png :I... and http://myanimelist.net/forum/?topicid=605019 i liked the design of this one so tried to change and use it.but i cant change the images of the side boxes(watching,completed,on-hold)...is there an easy way to do it or does it require the code to start from 0? You don't have to start it over. Look in the code for the link to the pic(s) of the buttons. There seem to be a lot of links. I think you can just replace those with your own version its not working.its a little different from others.in this one all links contain one same image and when i replace it it doesnt show the image: http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons2_zpsa4f0528c.png Did you replace every instance of the links? They come up like 10 times. If you replaced every link to the pic there will be some change. When I look at your layout there's no sign of any menu editing... also you never linked us to the pic menus you're replacing the buttons with which had the original problem If you look thru the code, it looks like he has 2 versions of that button menu you need to make a remake of. Ones a hover menu seen when you hover over the pics and what category is selected. This one: http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons2_zpsa4f0528c.png and the other is for what you normally see when not pointing to the menu: http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons1_zpsa6a1597a.png Upload your remakes of the button menus from the two links above to some site. If there's a problem with the menus you made link us to the pic to see what the problem is Find every link in the code http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons2_zpsa4f0528c.png and replace it with a link to your version of the hover menu find every link in the code http://i1302.photobucket.com/albums/ag140/shoutaazuma/allbuttons1_zpsa6a1597a.png and replace that with a link to your version of the normal menu. You have to replace every single link in the code with ones to your own. |
May 12, 2014 11:18 AM
#1925
May 12, 2014 2:43 PM
#1926
VeriTi said: @PanaJerk007 Round the corners of the "Currently Watching" and "All Anime" bar. #list_surround table:first-of-type td:first-child { border-radius: 20px 0 0 20px; } #list_surround table:first-of-type td:last-child { border-radius: 0 20px 20px 0; } Thanks a ton VeriTi! With your help I was able to fix almost everything I wanted to with the list. There was one problem, or maybe I wasn't as clear as I should've been in my question, but the code that rounded the corners of the bar at the top also rounded the corners of some other areas. Here's a picture: http://i950.photobucket.com/albums/ad350/PandaJerk007/d6779f5a1722d0492a61db2b3564a7c3.png If there's a way to alter the code so that it only affects that top bar could you help me with that? |
May 12, 2014 4:20 PM
#1927
May 12, 2014 5:21 PM
#1928
_Kuro_Neko_ said: Does this work?Could anyone help me recolor this? https://i.imgur.com/feqxsCx.png To make it match this image? https://i.imgur.com/eZpV0jE.png https://Dl.dropbox.com/s/wxk71i5ikt29x5m/feqxsCx.png |
May 13, 2014 1:22 PM
#1930
Was looking at VeriTi's current list and copied the main part since it's close to what I want to do with the top bar and category links but there were some selectors I haven't seen before so I removed all the codes and tested those selectors one by one but could not figure out some of them since a few would mess with too many things at once or have no apparent effect so if someone could explain how those work I'll be glad. I'll list them here. @-moz-keyframes MoreAnimationOn @-moz-keyframes MoreAnimationOff [class^="td"]:nth-child(n+3) a[href*="editlist.php"] br + br + table[class^="header"] div[id^="more"] .borderRBL div[id^="more"][style*="block"] div[id^="more"][style*="none"] div[id^="scorediv"] table:nth-of-type(n+4) .table_header table:nth-of-type(3) td table:nth-of-type(3) td strong table:nth-of-type(1) td:nth-child(n+6) tr:hover [class^="td"]:first-child:not(.borderRBL) tr:hover td[class^="td"] div #list_surround table:not([class^="header_"]) I also did some research about pseudo selector and pseudo elements such as :active :hover :nth-of-type, etc. However I'm still unable to understand those: :nth-child(an + b) :nth-last-child(an + b) :nth-last-of-type() :root |
May 13, 2014 2:40 PM
#1931
@-moz-keyframes is used for animations, if you go to the list and press the "More" button next to "Add" button more info come out in a nice animation(also in a great position and form). Is used to create more complex animations than the normal transition codes. http://www.w3schools.com/cssref/css_selectors.asp here is the table of pseudo-elements, I think that the example and descriptions are very easy to understand how to use them. |
May 13, 2014 5:59 PM
#1932
al_exs said: @-moz-keyframes is used for animations, if you go to the list and press the "More" button next to "Add" button more info come out in a nice animation(also in a great position and form). Is used to create more complex animations than the normal transition codes. Thanks, guess I'll play around with it a little and see what I can do. al_exs said: http://www.w3schools.com/cssref/css_selectors.asp here is the table of pseudo-elements, I think that the example and descriptions are very easy to understand how to use them. Thanks I haven seen that table before but the ones I didn't understand were only the 4 I mentioned before, I re-read it just in case but 2 of the 4 still don't make much sense: :nth-child(n+b) :root About the other ones I asked I really meant those specific cases and not pseudo-elements nor anything else just those specific cases: a[href*="editlist.php"] br + br + table[class^="header"] div[id^="more"] .borderRBL div[id^="more"][style*="block"] div[id^="more"][style*="none"] div[id^="scorediv"] table:nth-of-type(n+4) .table_header table:nth-of-type(1) td:nth-child(n+6) tr:hover [class^="td"]:first-child:not(.borderRBL) tr:hover td[class^="td"] div #list_surround table:not([class^="header_"]) This is how I tested them. First on a completely clean list where there was no code at all aside from the specific selector being tested at the moment I test those selectors with the exact same conditions: "position: fixed", "top: 45px", "background-color: #000000", "color: #FFFFFF" since those proprieties make it easier not notice changes on the list. For example table:nth-of-type(1) td:nth-child(n+6) under those conditions seems fix all category links at the top but with "All Anime" on an even higher place besides being the only one affected by the background-color despite all category links moving to a fixed position together and using other values on the place of n+6 makes it even more strange like removing portions of the topbar. Similarly some of those selectors do nothing visible it's like they are not even doing anything at all while others just select too many things at once. I really mean those in specific since any other combination of selector and pseudo-element works just fine, I'm sure they do something since nobody would use it if it did nothing I'm just a little lost since they do nothing under those conditions above or select too much things at once. |
May 13, 2014 6:09 PM
#1933
The list is almost perfect, could I please get some help making these last couple changes? Changes: Center the totals in their box Round the bottom right corner of the lists Pic showing what I mean: http://i950.photobucket.com/albums/ad350/PandaJerk007/2-1.png Make the "Edit" button invisible (but still clickable), or where you can only see it if you hover over it. Round the corners of the category menu Fix the number sign area (by rounding a corner maybe?) so it doesn't look messed up Pic showing what I mean: http://i950.photobucket.com/albums/ad350/PandaJerk007/1.png |
May 13, 2014 11:01 PM
#1934
@pandajerk007 For centering totals and rounding bottom right corner: .category_totals {text-align: center; border-radius: 10px 0 10px 10px;} for edit button: #list_surround div[style="float:right;"] {opacity:0;} #list_surround div[style="float:right;"]:hover {opacity:1;} for number sign rounded corner: .table_header:first-of-type {border-radius: 10px 10px 0 10px;} @_yukarisekai_ add .animetitle {font-size: 15px;} these codes might not work, i'm on mobile and wrote them straight from my mind, i can't check them myself ^^; |
May 14, 2014 12:08 AM
#1935
@kuronekodesu The code did center the Totals text, but the rest didn't do anything for some reason. I'm not sure if something in my code conflicts with those codes or what. Here's the link to my list: http://myanimelist.net/animelist/PandaJerk007 And here's everything I have so far: @import "https://dl.dropboxusercontent.com/u/78340470/anime.css"; @import "http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css"; /* 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://img72.imageshack.us/img72/8517/konachancom57453beachbl.jpg); background-attachment: fixed; background-size: cover; background-position: center top; } /* 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: rgba(255, 255, 255, 0.0); color: rgba(255, 255, 255, 1.0); font-family: Lucida Grande; font-size: 40px; } /* 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, 1.0); border-radius: 15px 15px 0px 0px; } /* 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: rgba(255, 255, 255, 1.0); font-family: Lucida Grande; font-size: 14px; border-radius: 10px 10px 10px 10px; } /* 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: rgba(255, 255, 255, 1.0); font-family: Lucida Grande; font-size: 16px; } /*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: rgba(0, 0, 0, 1.0); } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color: rgba(255, 255, 255, 1.0); 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: rgba(0, 0, 0, 1.0); border-width:0; padding:2px; } #copyright:after { content: ""; } .status_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); text-decoration: blink; } .status_not_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); } .status_selected a{ color: rgba(168, 168, 168, 1.0); } .status_not_selected a{ color: rgba(255, 255, 255, 1.0); } .thickbox { color: rgba(168, 168, 168, 1.0); font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; text-align: center; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } /****************************/ /* Highlight Row on Hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(168, 168, 168, 1.0) !important; -moz-transition: .3s ease; -webkit-transition: .3s ease; -o-transition: .3s ease; } *LIST BORDERS You can change the color of the border with border-color. You can increase the size of the border by increasing the px amount after any of the border-width codes. They're all set to 1px- make sure you increase all the border widths the same amount. Leave the border amounts that are set to zero alone. */ .status_selected, #grand_totals, .status_not_selected, .header_title, #copyright { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-width: 1px; } .table_header { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 0px; border-top-width: 0px !important; } .td1, .td2 { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-top-width: 0px !important; } .category_totals{ border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-width: 1px 1px 1px; } /* LIST BACKGROUND COLOR AND OPACITY Go to this page for instructions on customizing this part, under: Changing the list background color + opacity of the list background http://myanimelist.net/forum/?topicid=440525 The codes control the list in this order: odd numbered rows, even numbered rows, category totals, grand totals, copyright. */ .td1 { background: none repeat scroll 0 0 rgba(84, 84, 84, 1.0) !important; } .td2 { background: none repeat scroll 0 0 rgba(128, 128, 128, 1.0) !important; } .category_totals { background: none repeat scroll 0 0 rgba(64, 64, 64, 1.0) !important; } #grand_totals { background: none repeat scroll 0 0 rgba(0, 0, 0, 1.0) !important; } #copyright { background: none repeat scroll 0 0 rgba(64, 64, 64, 0.0) !important; } /* SIDE IMAGES Change the two characters on the sides out here. The left background image URL is for characters on the left side. The right is for the right. Use the topic for more info: http://myanimelist.net/forum/?topicid=450489&show=0#post1 Change their spacing from left to right by replacing left or right with a % amount (like 70%), after background positioning. You can also lower/increase the margin part -600px, or the width. */ #inlineContent { background-image: url("http://img684.imageshack.us/img684/2439/kaguyarender5.png"), url("http://img6.imageshack.us/img6/304/patchoulibook6.png"); width: 1285px !important; margin: 0 0 0 -600px !important; background-attachment: scroll !important; background-clip: border-box !important; background-color: transparent !important; background-origin: padding-box !important; background-position: left top, right top !important; background-repeat: no-repeat !important; background-size: contain !important; bottom: 0 !important; display: inline-block !important; height: 600px !important; left: 50% !important; position: fixed !important; z-index: -1; } /* 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:53px; width:35px; margin-left:40px; margin-top:-60px; border:1px solid #FFFFFF; background-color:rgba(255, 255, 255, 0.0); 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:-339px; padding-right: 225px; padding-top: 328px !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(64, 64, 64, 0.5) 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: 420px; 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: 45px;} /* BACKGROUND FITTER This forces the background image to fit to any screen size*/ body { background-size: cover;} /*WIDTH OF LIST*/ #list_surround { width: 768px !important;} /*REPOSITION LIST TO LEFT*/ #list_surround { position: absolute !important; left: 545px !important;} .table_header { text-align: center;} /*Left Side Curves*/ #list_surround:first-of-type td:first-child { border-radius: 10px 0 0 10px;} /*Centering Totals & rounding bottom right corner */ .category_totals {text-align: center; border-radius: 10px 0 10px 10px;} /*Edit Button*/ #list_surround div[style="float:right;"] {opacity:0;} #list_surround div[style="float:right;"]:hover {opacity:1;} /*Number Sign rounded corner: */ .table_header:first-of-type {border-radius: 10px 10px 0 10px;} Also, I'm still not quite sure how to round the corners of the box in the top right: http://i.gyazo.com/5f3f39b03423c3a479dd24cc6f1f99fa.png |
May 14, 2014 2:06 AM
#1936
@PandaJerk007 here, try this @import "https://dl.dropboxusercontent.com/u/78340470/anime.css"; @import "http://dl.dropbox.com/u/78340470/cssforfoxgirls.css"; /* 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://img72.imageshack.us/img72/8517/konachancom57453beachbl.jpg); background-attachment: fixed; background-size: cover; background-position: center top; } /* 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: rgba(255, 255, 255, 0.0); color: rgba(255, 255, 255, 1.0); font-family: lucida grande; font-size: 40px; } /* 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, 1.0); border-radius: 15px 15px 0px 0px; } /* 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: rgba(255, 255, 255, 1.0); font-family: lucida grande; font-size: 14px; border-radius: 10px 10px 10px 10px; } /* 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: rgba(255, 255, 255, 1.0); font-family: lucida grande; font-size: 16px; } /*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: rgba(0, 0, 0, 1.0); } #list_surround { margin:auto; background-image:url(); } a { text-decoration:none; } a:visited { text-decoration:none; } a:hover, a:visited:hover { color: rgba(255, 255, 255, 1.0); 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: rgba(0, 0, 0, 1.0); border-width:0; padding:2px; } #copyright:after { content: ""; } .status_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); text-decoration: blink; } .status_not_selected { background-color: rgba(0, 0, 0, 1.0); padding:2px; color: rgba(255, 255, 255, 1.0); } .status_selected a{ color: rgba(168, 168, 168, 1.0); } .status_not_selected a{ color: rgba(255, 255, 255, 1.0); } .thickbox { color: rgba(168, 168, 168, 1.0); font-family:fantasy; font-size:12px; } .header_title { height:52px; padding:2px; text-align: center; } .table_header { border-width:0; font-weight:bold; padding:2px; } .category_totals { height:30px; } #copyright, #grand_totals { text-align: center; margin:0 auto; } /****************************/ /* highlight row on hover */ /****************************/ tr:hover [class^=td] { background-color: rgba(168, 168, 168, 1.0) !important; -moz-transition: .3s ease; -webkit-transition: .3s ease; -o-transition: .3s ease; } *list borders you can change the color of the border with border-color. you can increase the size of the border by increasing the px amount after any of the border-width codes. they're all set to 1px- make sure you increase all the border widths the same amount. leave the border amounts that are set to zero alone. */ .status_selected, #grand_totals, .status_not_selected, .header_title, #copyright { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-width: 1px; } .table_header { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 0px; border-top-width: 0px !important; } .td1, .td2 { border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-top-width: 0px !important; } .category_totals{ border-color: rgba(255, 255, 255, 1.0); border-style: solid; border-width: 1px 1px 1px; } /* list background color and opacity go to this page for instructions on customizing this part, under: changing the list background color + opacity of the list background http://myanimelist.net/forum/?topicid=440525 the codes control the list in this order: odd numbered rows, even numbered rows, category totals, grand totals, copyright. */ .td1 { background: none repeat scroll 0 0 rgba(84, 84, 84, 1.0) !important; } .td2 { background: none repeat scroll 0 0 rgba(128, 128, 128, 1.0) !important; } .category_totals { background: none repeat scroll 0 0 rgba(64, 64, 64, 1.0) !important; } #grand_totals { background: none repeat scroll 0 0 rgba(0, 0, 0, 1.0) !important; } #copyright { background: none repeat scroll 0 0 rgba(64, 64, 64, 0.0) !important; } /* side images change the two characters on the sides out here. the left background image url is for characters on the left side. the right is for the right. use the topic for more info: http://myanimelist.net/forum/?topicid=450489&show=0#post1 change their spacing from left to right by replacing left or right with a % amount (like 70%), after background positioning. you can also lower/increase the margin part -600px, or the width. */ #inlinecontent { background-image: url("http://img684.imageshack.us/img684/2439/kaguyarender5.png"), url("http://img6.imageshack.us/img6/304/patchoulibook6.png"); width: 1285px !important; margin: 0 0 0 -600px !important; background-attachment: scroll !important; background-clip: border-box !important; background-color: transparent !important; background-origin: padding-box !important; background-position: left top, right top !important; background-repeat: no-repeat !important; background-size: contain !important; bottom: 0 !important; display: inline-block !important; height: 600px !important; left: 50% !important; position: fixed !important; z-index: -1; } /* 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:53px; width:35px; margin-left:40px; margin-top:-60px; border:1px solid #ffffff; background-color:rgba(255, 255, 255, 0.0); 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:-339px; padding-right: 225px; padding-top: 328px !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(64, 64, 64, 0.5) 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: 420px; 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: 45px;} /* background fitter this forces the background image to fit to any screen size*/ body { background-size: cover;} /*width of list*/ #list_surround { width: 768px !important;} /*reposition list to left*/ #list_surround { position: absolute !important; left: 545px !important;} .table_header { text-align: center;} /*left side curves*/ .status_selected:first-of-type, .status_not_selected:first-of-type {border-radius: 10px 0 0 10px;} .status_selected:last-of-type, .status_not_selected:last-of-type {border-radius: 0 10px 10px 0;} /*centering totals & rounding bottom right corner */ .category_totals {text-align: center; border-radius: 0 0 10px 10px;} /*edit button*/ #list_surround div[style="float: right;"] {opacity:0;} #list_surround div[style="float: right;"]:hover {opacity:1;} /*number sign rounded corner: */ .table_header:first-of-type {border-radius: 10px 10px 0 0;} |
May 14, 2014 3:19 PM
#1937
Miketsukami-kun said: Thanks I haven seen that table before but the ones I didn't understand were only the 4 I mentioned before, I re-read it just in case but 2 of the 4 still don't make much sense: :nth-child(n+b) :root X:nth-child(b) select every X element that is the B child of its parent, this is not used with An+B afaik. :root select the topmost parent that is the <body>, is not really that complex. Miketsukami-kun said: About the other ones I asked I really meant those specific cases and not pseudo-elements nor anything else just those specific cases: a[href*="editlist.php"] br + br + table[class^="header"] div[id^="more"] .borderRBL div[id^="more"][style*="block"] div[id^="more"][style*="none"] div[id^="scorediv"] table:nth-of-type(n+4) .table_header table:nth-of-type(1) td:nth-child(n+6) tr:hover [class^="td"]:first-child:not(.borderRBL) tr:hover td[class^="td"] div #list_surround table:not([class^="header_"]) [ ] square brackets are used to specify some attributes on the element to be checked to select them, X^=Y means that the element X attribute start with Y string, X*=Y means that the element X contain Y string, so that way you can select some specific link or table or whatever element that contain some specific attributes. :not(X) is used to exclude some elements, can be .class #id [pseudo-elements]. The easy way to find what the selector do is by deactivate some properties in live view, using firebug(or devtools), or adding a new selector with just a different color, like "background: #ff0000 !important;". |
May 14, 2014 6:34 PM
#1938
It all worked! Thanks a ton Kuronekodesu, and everyone who's been trying to help me! <3 Now's the fun part, making an awesome background and stuff :) |
May 14, 2014 8:48 PM
#1939
al_exs said: X:nth-child(b) select every X element that is the B child of its parent, this is not used with An+B afaik. :root select the topmost parent that is the <body>, is not really that complex. I still don't get :root if it selects <body> what is the point of using it? Wouldn't it be better to just use "body {...}" instead? al_exs said: [ ] square brackets are used to specify some attributes on the element to be checked to select them, X^=Y means that the element X attribute start with Y string, X*=Y means that the element X contain Y string, so that way you can select some specific link or table or whatever element that contain some specific attributes. :not(X) is used to exclude some elements, can be .class #id [pseudo-elements]. Thanks! After your explanation and some testing I finally got how those square brackets selector work, they are way easier to use than some other selectors. al_exs said: The easy way to find what the selector do is by deactivate some properties in live view, using firebug(or devtools), or adding a new selector with just a different color, like "background: #ff0000 !important;". I forgot to mention that I use firebug for testing 'cause it would be a pain to save and refresh the page every single time I want to test something but thanks again using #ff0000 makes it easier to find what the selector select than with the #000000 I was using. Now I got almost what all of those selectors from that list I posted before selects, however there are 5 that still don't do anything noticeable but the must do something since they wouldn't be on VeriTi's code if they did nothing. Those are the ones: div[id^="more"] div[id^="more"] .borderRBL div[id^="more"][style*="block"] div[id^="more"][style*="none"] div[id^="scorediv"] Looking at it most of those should be related to more button but they are not noticeable even with #ff0000. Edit reason: I made some more tests so decided to change edit my post with just what is left off that list. |
WyvandronMay 15, 2014 7:00 PM
May 16, 2014 3:05 AM
#1940
Hey guys, I'm pretty new to this site and I just made my own custom CSS with the help of Shishio's template, but I seem to have a little problem that I hope you guys can fix. After the Edit link in every row of my list of Anime, there seems to be a little hyphen symbol that I'm trying to get rid of. I've tried many things to no avail. Can anyone here help me out? I would appreciate it tremendously. Here's the link to MyAnimeList: http://myanimelist.net/animelist/LastReaction And here's an image to explain what I'm talking about: Helping Image |
LastReactionMay 16, 2014 1:26 PM
May 16, 2014 6:26 AM
#1941
Hey guys whats up? I have 2 questions: 1) I have the square layout design(by the way huge credit to the designer, amazing layout. Sorry I don't remember his name). Link to my list: http://myanimelist.net/animelist/SuperSmashBros I want to change my header picture but it will never fit exacly the size I need. I saw the creator saying to do 420 high 1920 width but I could never find an image that was bigger than this to resize it so my question is basicly if you can resize it upwards. I think it's impossible because it's only logical for it to be that way but I'm asking anyway. 2) the top-bar really pisses me off. It gets in the way of everything! So my question is if I can remove it, put it in the very bottom of the list so it will stay there and not bother me or make it like in this link(the black version): http://origin.myanimelist.net/forum/?topicid=449097 I tried but I guess the list is fixated with the design of that bar. So yeah, if I can change that. Thanks a lot in advance :) |
May 16, 2014 7:42 AM
#1942
SuperSmashBros said: Hey guys whats up? I have 2 questions: 1) I have the square layout design(by the way huge credit to the designer, amazing layout. Sorry I don't remember his name). Link to my list: http://myanimelist.net/animelist/SuperSmashBros I want to change my header picture but it will never fit exacly the size I need. I saw the creator saying to do 420 high 1920 width but I could never find an image that was bigger than this to resize it so my question is basicly if you can resize it upwards. I think it's impossible because it's only logical for it to be that way but I'm asking anyway. 2) the top-bar really pisses me off. It gets in the way of everything! So my question is if I can remove it, put it in the very bottom of the list so it will stay there and not bother me or make it like in this link(the black version): http://origin.myanimelist.net/forum/?topicid=449097 I tried but I guess the list is fixated with the design of that bar. So yeah, if I can change that. Thanks a lot in advance :) i got you. this this code. use 850x250 image for banner. or you can use any size image, it will auto resize. just replace he inline image @import url("http://dl.dropbox.com/u/49469857/MAL/premade/anime.css"); @import url("http://dl.dropbox.com/u/78340470/Icon%20Style%20Menu%20Bar/IconStyleCSS.css"); #fancybox-wrap { bottom: 0px; left: 0px ! important; margin: auto ! important; max-height: 90%; position: fixed ! important; right: 0px ! important; top: 0px ! important; } #fancybox-inner { bottom: 10px; height: auto ! important; } body { font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 11px; } a { text-decoration: none; } #mal_control_strip { background: none repeat scroll 0px 0px rgba(0, 0, 0, 0) ! important; height: 120px; margin: auto ! important; width: 77% ! important; } #inlineContent { display: block ! important; position: absolute; top: 0px; } #mal_control_strip tbody { } #mal_control_strip div { font-size: 0px ! important; margin: 0px ! important; } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks { } #mal_cs_pic, #mal_cs_listinfo, #mal_cs_links { } #mal_cs_pic { } #mal_cs_listinfo div a, #mal_cs_links div a, #mal_cs_otherlinks div a { } #mal_cs_listinfo div a:hover, #mal_cs_links div a:hover, #mal_cs_otherlinks div a:hover { } #mal_cs_listinfo div:first-of-type a { } #mal_cs_listinfo div:last-of-type a { } #mal_cs_links div:first-of-type a:first-of-type { } #mal_cs_links div:last-of-type a:first-of-type { } #mal_cs_links div:last-of-type a:last-of-type { } #mal_cs_links div:first-of-type a:last-of-type, #mal_cs_otherlinks div:first-of-type a { } #mal_cs_otherlinks div a[href*="/forum/"], #mal_cs_otherlinks div a[href*="/mangalist/"], #mal_cs_otherlinks div a[href*="/animelist/"], #mal_cs_otherlinks div a[href*="/login.php"] { } #mal_cs_otherlinks div a[href*="/history/"], #mal_cs_otherlinks div a[href*="/register.php"] { } #mal_cs_otherlinks div a[href*="/panel.php?go=export"], #mal_cs_otherlinks div a[href*="/shared"], #mal_cs_otherlinks div a[href*="/modules.php?go=faq"] { } #mal_cs_listinfo div a:before, #mal_cs_links div a:before, #mal_cs_otherlinks div a:before { } #mal_cs_listinfo div a:hover:before, #mal_cs_links div a:hover:before, #mal_cs_otherlinks div a:hover:before { } #mal_cs_powered { } #mal_cs_powered img { display: none; } #searchBox { } .header_cw + table, .header_completed + table, .header_onhold + table, .header_dropped + table, .header_ptw + table { display: none; } #list_surround > table:nth-of-type(n+4) ~ .header_cw + table, #list_surround > table:nth-of-type(n+4) ~ .header_completed + table, #list_surround > table:nth-of-type(n+4) ~ .header_onhold + table, #list_surround > table:nth-of-type(n+4) ~ .header_dropped + table, #list_surround > table:nth-of-type(n+4) ~ .header_ptw + table { display: none; } .table_header { } .table_header:first-of-type, .table_header:nth-of-type(n+6) { } .table_headerLink { } #list_surround > table:first-of-type { border-radius: 13px 13px 0px 0px; border-spacing: 11px; font-size: 13px; font-weight: bold; top: 460px; width: auto; } .status_selected, .status_not_selected { border-radius: 7px; white-space: nowrap; width: auto; } .status_selected a, .status_not_selected a { display: block; line-height: 42px; padding: 0px 22px; } #list_surround { border-radius: 42px; margin: 200px auto 64px; min-width: 726px; padding: 11px 31px 42px; width: 77%; } .header_cw, .header_completed, .header_onhold, .header_dropped, .header_ptw { border-radius: 13px; clear: both; margin: 0px 0px 42px; padding: 11px 0px; position: relative; top: 31px; } .header_title { font-size: 22px; font-weight: bold; text-align: center; } #list_surround > table:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw), .hide { border-radius: 13px; float: left; height: 220px; margin: 11px; position: relative; width: 220px; } #list_surround > table:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw) { z-index: 1; } .hide { background-position: center -20px; display: block ! important; margin-left: -231px; } .td1, .td2 { border-radius: 4px; padding: 4px 7px; position: absolute; } .td1:nth-of-type(2), .td2:nth-of-type(2) { height: 100%; padding: 0px; visibility: hidden; width: 100%; } .td1:first-of-type:before, .td2:first-of-type:before { content: "#"; } .td1:first-of-type, .td2:first-of-type { left: 11px; top: 11px; width: 42px; z-index: 1; } .td1 a[title="Anime Information"] + small, .td2 a[title="Anime Information"] + small { border-radius: 4px; display: block; font-size: 11px; left: 82px; padding: 4px 7px; position: absolute; text-align: center; top: 11px; visibility: visible; width: 43px; word-wrap: break-word; } .td1[width="50"]:nth-of-type(4), .td2[width="50"]:nth-of-type(4) { right: 11px; top: 11px; width: 42px; } td[width="70"] + .td1:nth-of-type(5):before, [width="70"] + .td2:nth-of-type(5):before { content: "Volumes: "; } td[width="70"] + .td1:nth-of-type(5), td[width="70"] + .td2:nth-of-type(5) { right: 11px; text-align: right; top: 11px; width: auto; } .td1 a:not([title="Anime Information"]) + small, .td2 a:not([title="Anime Information"]) + small { border-radius: 4px; display: block; font-size: 11px; padding: 4px 7px; position: absolute; right: 11px; text-align: right; top: 41px; visibility: visible; width: auto; } .animetitle { border-radius: 7px; bottom: 41px; display: block; font-size: 13px; font-weight: bold; left: 11px; max-height: 34px; overflow: hidden; padding: 7px; position: absolute; text-align: center; visibility: visible; width: 184px; } .td1:nth-of-type(3):before, .td2:nth-of-type(3):before { content: "Score: "; } .td1:nth-of-type(3), .td2:nth-of-type(3) { bottom: 11px; left: 11px; text-align: left; width: auto; } td[width="50"] + .td1:nth-of-type(5):before, [width="50"] + .td2:nth-of-type(5):before { content: "Episodes: "; } td[width="50"] + .td1:nth-of-type(5), td[width="50"] + .td2:nth-of-type(5) { bottom: 11px; right: 11px; text-align: right; width: auto; } .td1[width="70"]:nth-of-type(4):before, .td2[width="70"]:nth-of-type(4):before { content: "Chapters: "; } .td1[width="70"]:nth-of-type(4), .td2[width="70"]:nth-of-type(4) { bottom: 11px; right: 11px; text-align: right; width: auto; } .td1:nth-of-type(n+6), .td2:nth-of-type(n+6) { display: none; } .td1[width="125"], .td2[width="125"] { height: 45px; left: 11px; overflow: auto; top: 71px; width: 184px; } #list_surround > table:hover .td1[width="125"], #list_surround > table:hover .td2[width="125"] { display: block; } input[type="text"] { border-radius: 4px; border: medium none; text-align: right; width: 100%; } input[value="Go"] { display: none; } #list_surround .List_LightBox { display: block; font-size: 0px; height: 100%; left: 0px; position: absolute; top: 0px; visibility: visible; width: 100%; } .category_totals { border-radius: 13px; padding: 0px 31px; text-align: center; white-space: pre-line; } .category_totals:before { content: "Totals:"; display: block; font-weight: bold; text-align: center; } #grand_totals, #copyright { clear: both; padding: 11px 0px; position: relative; text-align: center; top: 31px; } #grand_totals { border-radius: 7px; margin-bottom: 22px; } #copyright { border-radius: 13px; margin-bottom: 31px; margin-top: 0px ! important; } #list_surround > br { display: none; } #inlineContent { border-bottom-color: transparent; } #mal_control_strip tbody { } inlineContent, .status_selected, body, .hide { background-color: #1A1A1A; } body, input[type="text"] { color: #FFFFFF; } #list_surround > table:first-of-type, #list_surround, input[type="text"] { background-color: #343434; } a { color: #B6B6B6; } a:hover, #mal_cs_listinfo div a:hover, #mal_cs_links div a:hover, #mal_cs_otherlinks div a:hover { color: #FFFFFF; } #list_surround > table:nth-of-type(n+4):hover:not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw) { background-color: rgba(245, 132, 0, 0.2); } .hide { box-shadow: 0px 0px 11px 2px #0D0D0D inset; } *::-moz-selection { } .status_not_selected, .header_cw, .header_completed, .header_onhold, .header_dropped, .header_ptw, .category_totals, #grand_totals, #copyright { background-color: #1A1A1A; background-image: -moz-linear-gradient(center top , #1A1A1A 40%, #0D0D0D 60%); } #mal_cs_listinfo div a:hover, #mal_cs_links div a:hover, #mal_cs_otherlinks div a:hover, .table_headerLink:hover, .status_not_selected:hover { } .td1, .td2, .td1 a + small, .td2 a + small, .animetitle { background: -moz-linear-gradient(center top , rgba(26, 26, 26, 0.9) 40%, rgba(13, 13, 13, 0.9) 60%) repeat scroll 0% 0% transparent; } .animetitle:hover { background-image: -moz-linear-gradient(center bottom , rgba(26, 26, 26, 0.9) 40%, rgba(13, 13, 13, 0.9) 60%); } #list_surround > table:nth-of-type(n+4):not(.header_cw):not(.header_completed):not(.header_onhold):not(.header_dropped):not(.header_ptw), .hide { height: 300px; } .hide { background-position: center center; } #inlineContent { background-image: url("http://dl.dropbox.com/u/49469857/MAL/premade/square/headers/seasons.jpg"); background-size: 100% 100%; border-radius: 25px; border: medium solid #343434; height: 250px; left: 250px; margin-top: 30px; width: 850px; } .hide { background-image: url(""); } a { color: #FFFFFF; } |
May 16, 2014 11:21 AM
#1943
Question! I have a tag box on the left side of my list, around the middle-bottom of the page. A few people are telling me that the tag box is cut off for them, and that they can only see the first 2 lines of the tag box. Is there any way I can fix this to where it's formatted properly for all viewers? Or do I just have to move the tag box even higher than it already is? o_O |
May 16, 2014 2:34 PM
#1944
LastReaction said: Hey guys, I'm pretty new to this site and I just made my own custom CSS with the help of Shishio's template, but I seem to have a little problem that I hope you guys can fix. After the Edit link in every row of my list of Anime, there seems to be a little hyphen symbol that I'm trying to get rid of. I've tried many things to no avail. Can anyone here help me out? I would appreciate it tremendously. Here's the link to MyAnimeList: http://myanimelist.net/animelist/LastReaction And here's an image to explain what I'm talking about: Helping Image add #list_surround div[style="float: right;"] {color: transparent !important;} at the bottom of your css. |
May 16, 2014 4:18 PM
#1945
kuronekodesu said: add #list_surround div[style="float: right;"] {color: transparent !important;} at the bottom of your css. Thank you very much kuronekodesu! This solved my problem completely. |
May 16, 2014 8:29 PM
#1946
Miketsukami-kun said: al_exs said: The easy way to find what the selector do is by deactivate some properties in live view, using firebug(or devtools), or adding a new selector with just a different color, like "background: #ff0000 !important;". I forgot to mention that I use firebug for testing 'cause it would be a pain to save and refresh the page every single time I want to test something but thanks again using #ff0000 makes it easier to find what the selector select than with the #000000 I was using. Now I got almost what all of those selectors from that list I posted before selects, however there are 5 that still don't do anything noticeable but the must do something since they wouldn't be on VeriTi's code if they did nothing. Those are the ones: div[id^="more"] div[id^="more"] .borderRBL div[id^="more"][style*="block"] div[id^="more"][style*="none"] div[id^="scorediv"] Looking at it most of those should be related to more button but they are not noticeable even with #ff0000. Edit reason: I made some more tests so decided to change edit my post with just what is left off that list. All the div[id^="more"] are not noticeable until you click on the More button and all the info appear, then try to change some properties and you will see what happens. |
May 16, 2014 8:54 PM
#1947
al_exs said: All the div[id^="more"] are not noticeable until you click on the More button and all the info appear, then try to change some properties and you will see what happens. I see so that is why I didn't notice I almost never click on the More button, guess that is why I also didn't notice anything with .borderRBL as well. Thanks! ^^ |
May 16, 2014 11:41 PM
#1948
Quick question. For the DVD/MANGA cover hover css import on my animelist it is working fine, but on my mangalist a lot of the manga covers do not show up. How can I fix this? And yes I am using the correct css for the manga cover hover option. |
"Be the change you wish to see in the world." |
May 17, 2014 12:45 AM
#1949
Toarujisuru said: there's something wrong with the "right" manga import so you either have to make your own or find another one. I might be able to help you find it later.Quick question. For the DVD/MANGA cover hover css import on my animelist it is working fine, but on my mangalist a lot of the manga covers do not show up. How can I fix this? And yes I am using the correct css for the manga cover hover option. Edit: here it is http://dl.dropbox.com/u/49469857/MAL/premade/manga.css |
Pico-tanMay 17, 2014 12:57 AM
May 17, 2014 2:31 AM
#1950
Oiomi said: Toarujisuru said: there's something wrong with the "right" manga import so you either have to make your own or find another one. I might be able to help you find it later.Quick question. For the DVD/MANGA cover hover css import on my animelist it is working fine, but on my mangalist a lot of the manga covers do not show up. How can I fix this? And yes I am using the correct css for the manga cover hover option. Edit: here it is http://dl.dropbox.com/u/49469857/MAL/premade/manga.css Ah, thank you. That one is better, but I'm still having the same problem with just a few series. Oh well no biggie. Just so long as most of 'em show up I'm happy. ^^ Thanks again. |
"Be the change you wish to see in the world." |
More topics from this board
» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )Shishio-kun - Jul 21, 2017 |
381 |
by KabukiChouNights
»»
Sep 13, 10:56 AM |
|
» theme helpthreat - Jul 5 |
5 |
by Zaryf
»»
Aug 21, 5:46 AM |
|
» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )Valerio_Lyndon - Apr 19, 2018 |
1261 |
by KiranaStarr
»»
Aug 16, 5:48 PM |
|
» [CSS] ⭐️ Customize your List Cursor + Cursor FixesShishio-kun - Mar 8, 2021 |
30 |
by Shishio-kun
»»
Jul 28, 3:17 AM |
|
» How To Have Different Banner/Cover image & Background Image For Manga & Anime ListsYasminaRegina - Jul 25 |
2 |
by YasminaRegina
»»
Jul 26, 1:02 AM |