Movie list and info box - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115) +---- Thread: Movie list and info box (/showthread.php?tid=143782) |
Movie list and info box - Stefanaleks - 2012-10-28 Hi, This being my first post on this forum, I would like to thank you for making this skin, it really improves the XBMC experience. I'm using the Fanart view mode. I was searching for how to remove thumbnails on movies and tv shows and I found what I was looking for. Thanks. Now that I removed those thumbnails, I want to move the title and the info box containing genre, runtime, year, rating etc. all the way to the left of the screen. Where thumbnails used to be. I made the list of movies smaller from within settings, but I would like to make it even smaller. Containing a list of 4 movies. I attached a picture, where I graphically marked things I want to move and to where I want them to be. I want to move nr 1 over to 1a. And I want the box marked 2, to stop at the line marked 3. Hope you are able to point me to the lines in the xml where I need to change the code. Once again, thanks in advance. RE: Movie list and info box - ronie - 2012-10-28 to make the fanart list shorter, make three modifications in Includes.xml: - adjust the height of the list: see <include name="FanartShort"> - adjust the height of the scrollbar: see <include name="AllViewCommonPageControls"> - move the panel down: see <include name="ContentPanel"> moving the infolabels to the left need to be done in View-Fanart.xml: - adjust the <posx> value of the labels inside <include name="Fanart-Videos_Extras"> RE: Movie list and info box - Stefanaleks - 2012-10-28 Thanks Ronie! With your help I was able to tweak this skin exactly how I wanted. I've been asked to share which lines I changed, so I made a list of the changes that I did. I did some re-tweaking and I've attached a new picture of what it will look like with these values. My resolution is 1920 x 1080, incase that affects the values below. If so these values may not be accurate if you are using another resolution. Settings - Skin Settings - View Options: Fanart Short list (checked) Remove thumbsnail (dvd / blu-ray cover) View-Fanart.xml Line 500 Before: <visible>!stringcompare(ListItem.Label,..)</visible> After: <visible>!Container.Content(Movies) + !stringcompare(ListItem.Label,..)</visible> Move Movie title, Year, Genre, Runtime and movie info flags View-Fanart.xml Line 313 posy from 550 to 570 Line 315 height from 158 to 175 Line 329 posx from 257 to 15 Line 330 posy from 568 to 583 Line 341 posx from 257 to 15 Line 342 posy from 568 to 583 Line 356 posx from 257 to 15 Line 357 posy from 593 to 608 Line 368 posx from 257 to 15 Line 369 posy from 613 to 628 Line 380 posx from 257 to 15 Line 381 posy from 633 to 648 Line 392 posx from 420 to 178 Line 393 posy from 633 to 648 Line 404 posx from 582 to 341 Line 405 posy from 633 to 648 Line 435 posx from 252 to 10 Line 436 posy from 655 to 670 Line 331 og 343 width from 617 to 817 Remove Movie Studio Flag View-Fanart.xml Comment out Line 441, <!-- --> Movie list, with scrolling Includes.xml Line 66 posy from 138 to 285 Line 68 height from 298 to 175 Line 1426 posy from 88 to 235 Line 1428 height from 545 to 345 Line 1457 posy from 142 to 285 Line 1458 height from 291 to 178 This is what it looks like. |