Rincewind Posted January 28, 2017 Share Posted January 28, 2017 Do any of the theme creators know were in the xaml I can change the font for the Favourite title or is this even possible. If not is it possible to hide the text (the word favourite) and add a new line of text there instead? Quote Link to comment Share on other sites More sharing options...
Grila Posted January 28, 2017 Share Posted January 28, 2017 (edited) @Rincewind I believe it's ThumbnailListView, the textblock at the top of the dockpanel. I assume you're talking about the favorites and recent sections that show the covers? Edited January 28, 2017 by Grila Quote Link to comment Share on other sites More sharing options...
Rincewind Posted January 28, 2017 Author Share Posted January 28, 2017 thank you so much @Grila that worked for the font change perfectly but when I add the code for changing the font height it ignores it, here's the code:- <TextBlock Name="Title" FontFamily="Arcade Interlaced" FontSize="10" DockPanel.Dock="Top" Foreground="#b2b2b2" /> Quote Link to comment Share on other sites More sharing options...
CriticalCid Posted January 28, 2017 Share Posted January 28, 2017 The font sizes of some elements are hardcoded in BigBox and ignore custom values because their size is dynamically generated based on the desktop resolution of the user. If you just want to use the Favourites box than you can delete the name property of the TextBlock and use Text=”Favourites” instead. If you also want to use the Recent box as well than you could just remove the whole title TextBlock and add the titles for each box directly to the platform views above the box elements. Quote Link to comment Share on other sites More sharing options...
Rincewind Posted January 28, 2017 Author Share Posted January 28, 2017 That makes sense now thank you Cid Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.