Change Panel Size (1 Viewer)

Se7enDays

Portal Member
September 28, 2006
5
0
Hi,

first of all thanks to this wonderful skin, it just looks awesome.

I have one little complaint though. In the list views for my music, my videos etc. the left hand navigation panel is to narrow. the action commands are not fully shown. so i was wondering if i could manually change the width of them, but i don't know which xml file to edit. can someone help me.

see picture for an example of what i mean:
 

Attachments

  • Music - List.jpg
    Music - List.jpg
    203.6 KB

aj1405

Portal Pro
September 30, 2007
443
302
Home Country
Norway Norway
Hi,

first of all thanks to this wonderful skin, it just looks awesome.

I have one little complaint though. In the list views for my music, my videos etc. the left hand navigation panel is to narrow. the action commands are not fully shown. so i was wondering if i could manually change the width of them, but i don't know which xml file to edit. can someone help me.

see picture for an example of what i mean:

Then you have to change every xml and controll.

I think you're better off changing the font to a smaller one.

Have a look at C:\Program Files\Team MediaPortal\MediaPortal\skin\Black & White 1080\references.xml

There you'll find a button and a sortbutton controll. Try thanging the font to 12 for example:

Code:
	<control>
		<description>button</description>
		<type>button</type>
		<id>1</id>
		<posX>0</posX>
		<posY>0</posY>
		<width>320</width>
		<height>40</height>
		<textXOff>60</textXOff>
		<textYOff>0</textYOff>
		<textureFocus>list_menu_focus.png</textureFocus>
		<textureNoFocus></textureNoFocus>
		[B][COLOR="red"]<font>font12</font>[/COLOR][/B]
		<textcolor>ff000000</textcolor>
		<colordiffuse>ffffffff</colordiffuse>
		<disabledcolor>ffcccccc</disabledcolor>
		<textcolorNoFocus>ff000000</textcolorNoFocus>
		<dimColor>ffffffff</dimColor>
	</control>

	<control>
		<description>sortbutton</description>
		<type>sortbutton</type>
		<id>3</id>
		<width>320</width>
		<height>40</height>
		<textXOff>60</textXOff>
		<textYOff>0</textYOff>
		<textureFocus>list_menu_focus.png</textureFocus>
		<textureNoFocus></textureNoFocus>
		<textureAscending>button_asc_nofocus.png</textureAscending>
		<textureAscendingFocused>button_asc_focus.png</textureAscendingFocused>
		<textureDescending>button_desc_nofocus.png</textureDescending>
		<textureDescendingFocused>button_desc_focus.png</textureDescendingFocused>
		<offsetSortButtonX>10</offsetSortButtonX>
		<offsetSortButtonY>1</offsetSortButtonY>
		<offsetSortButtonWidth>38</offsetSortButtonWidth>
		<offsetSortButtonHeight>38</offsetSortButtonHeight> 
		[B][COLOR="Red"]<font>font12</font>[/COLOR][/B]
		<textcolor>ff000000</textcolor>
		<colordiffuse>ffffffff</colordiffuse>
		<disabledcolor>ff999999</disabledcolor>
		<textcolorNoFocus>ff000000</textcolorNoFocus>
		<dimColor>ffffffff</dimColor>
		<label>103</label>
	</control>
 

Users who are viewing this thread

Top Bottom