Font related question - 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: Amber (https://forum.kodi.tv/forumdisplay.php?fid=203) +---- Thread: Font related question (/showthread.php?tid=360052) |
Font related question - billyrene - 2021-01-24 i was experimenting with fonts a little and found one that i'd really like to have for the main menu. trouble is the font is a lot bigger/wider than the default font so the main menu items are much closer together, to close for may taste, and the menu bar looks really crowded so my question now is if there is any way to increase the "gap" between the main menu items in the bar. so that they are all farther apart. possible? also i would like to change the font of the time and date in the title bar. i know it's somehow linked to the "detail" font but i'd like to link it to a different one. in which xml file can i find the titlebar time and date? can't seem to find it. RE: Font related question - bsoriano - 2021-01-26 (2021-01-24, 00:13)billyrene Wrote: i was experimenting with fonts a little and found one that i'd really like to have for the main menu. trouble is the font is a lot bigger/wider than the default font so the main menu items are much closer together, to close for may taste, and the menu bar looks really crowded@billyrene , you can increase the gap by going to the xml file "Includes_Horizontal_Home.xml" and find the following code (around line 64):
That is the main menu control, a fixed list with id=300. To increase the gap, you need to change the width that appears for the "itemlayout" and "focusedlayout". If you see in the code, the current width for both is 519. You would need to replace that with a larger number. You will most likely also need to increase the width of the label control that appears in the itemlayout and focusedlayout. As for the font of the date and time, those labels appear in an include named "Time" in the file "Includes.xml". It starts around line 319. The label controls for weather and time/date start around lines 432 and 444, respectively. Please let me know if this is the info you were looking for. Thanks. Regards, Bart RE: Font related question - billyrene - 2021-01-27 (2021-01-26, 23:43)bsoriano Wrote: That is the main menu control, a fixed list with id=300. To increase the gap, you need to change the width that appears for the "itemlayout" and "focusedlayout". If you see in the code, the current width for both is 519. You would need to replace that with a larger number. You will most likely also need to increase the width of the label control that appears in the itemlayout and focusedlayout.you were right. i had to replace the width of "itemlayout" and "focusedlayout" as well as the width of the label control that appears in the itemlayout and focusedlayout to make it look alright. but then ran into another trouble as you can see in the picture below the focus got shifted way to the right. messed around with it a little and then figured out i also have to adjust the <posx>-338</posx> value from row 67. -338 being the regular value. decrease this value eg. -700 and the focus shifts more the the left. increase value eg. -200 and focus shifts more to the right, just in case someone tries this too. had to adjust accordingly and it worked out perfect in the end (2021-01-26, 23:43)bsoriano Wrote: As for the font of the date and time, those labels appear in an include named "Time" in the file "Includes.xml". It starts around line 319. The label controls for weather and time/date start around lines 432 and 444, respectively.also found this and worked out nicely (2021-01-26, 23:43)bsoriano Wrote: Please let me know if this is the info you were looking for. Thanks.yes everything worked out perfectly. thanks a thousand times i am so greatful |