Author Topic: Horizontal broken last line in the skin  (Read 5004 times)

0 Members and 1 Guest are viewing this topic.

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2669
    • View Profile
Horizontal broken last line in the skin
« 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]
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2669
    • View Profile
Re: Horizontal broken last line in the skin
« Reply #1 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]
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2669
    • View Profile
Re: Horizontal broken last line in the skin
« Reply #2 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]
« Last Edit: May 07, 2010, 07:25:07 pm by Ivek23 »
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2669
    • View Profile
Re: Horizontal broken last line in the skin
« Reply #3 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]
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


 

anything