Personal Video Database

English => Support => Topic started by: Ivek23 on May 07, 2010, 02:39:04 pm

Title: Horizontal broken last line in the skin
Post by: Ivek23 on May 07, 2010, 02:39:04 pm
Part 1:
How and what I need to fix the Horizontal broken last line in the skin.
Screenshot 1-4.

[attachment deleted by admin]
Title: Re: Horizontal broken last line in the skin
Post by: Ivek23 on May 07, 2010, 03:04:54 pm
Part 2:
What do I do that all the categories of titles were settled in a vertical line.
Screenshot 5-6.

The biggest problem is the custon field entries
An example of original code:
Code: [Select]
<row>
        <column>
          <label width="100" halign="right">
            <caption>Movie budget:</caption>
          </label>
          <spacer width="7" />
          <custom field="Movie budget"><font> <bold/> <size>10</size> <name>Arial </name> <color>$3333FF</color> </font>Movie budget<spacer width="10" /></custom>
        </column>
      </row>

or
Code: [Select]
<row>
        <column>
          <label width="100" halign="right">
            <caption>Box Office:</caption>
          </label>
          <spacer width="7" />
          <custom field="Money"><font> <bold/> <size>10</size> <name>Arial </name>
<color>$3333FF</color> </font>Money<spacer width="10" /></custom>
        </column>
      </row>

There was Horizontal broken last line in the skin,so I changed the code

Code: [Select]
<row>
        <column>
          <label width="113" halign="right">
            <caption>Movie budget:</caption>
          </label>
         
          <custom field="Movie budget"><font> <bold/> <size>10</size> <name>Arial </name> <color>$3333FF</color> </font>Movie budget<spacer width="10" /></custom>
        </column>
      </row>
or
Code: [Select]
<row>
        <column>
          <label width="113" halign="right">
            <caption>Box Office:</caption>
          </label>
         
          <custom field="Money"><font> <bold/> <size>10</size> <name>Arial </name>
<color>$3333FF</color> </font>Money<spacer width="10" /></custom>
        </column>
      </row>

follows now no longer Horizontal broken last line in the skin therefore, it no longer addresses all categories aligned in a vertical line.

What should I change the codes to be addresses all categories aligned in a vertical line.



[attachment deleted by admin]
Title: Re: Horizontal broken last line in the skin
Post by: Ivek23 on May 07, 2010, 06:13:14 pm
Using the this one skin:
Annex first xml-pvd_movie_tabs extra+.
and here same skin adjusted (mod):
Annex second xml-pvd_movie_tabs extra+mod.

[attachment deleted by admin]
Title: Re: Horizontal broken last line in the skin
Post by: Ivek23 on May 09, 2010, 07:35:28 pm
I found a solution for all
Code: [Select]
<row>
        <column>
          <label width="100" halign="right">
            <caption>Movie budget:</caption>
          </label>
          <spacer width="7" />
          <custom field="Movie budget"><font> <bold/> <size>10</size> <name>Arial </name> <color>$3333FF</color> </font>Movie budget<spacer width="10" /></custom>
        </column>
      </row>

this remains  <spacer width="7" />
here and replace this
 <custom field="Movie budget"><font> <bold/> <size>10</size> <name>Arial </name> <color>$3333FF</color> </font>Movie budget<spacer width="10" /></custom>

this
<custom field="Movie budget"><font> <bold/> <size>10</size> <name>Arial </name> <color>$3333FF</color> </font>Movie budget</custom><spacer width="10" />

and everything is OK more are Unfortunately, no pictures only xml in Appendices.





[attachment deleted by admin]