I am adjusting the template dfmetalbox. However I have two problems:
1- The Title of my collection "Bibliothek" is displayed with a small "b" at the beginning. I’d like to change the B to a capital letter but can not figure out how to do that. I have very limited html knowledge
2- I would like to add other categories to be displayed, e.g the Producer or the Film format but cannot not figure out the name of those fields in English. I know how and where to edit those as I succeeded in adding the Directors Name, which now properly displays as "Regisseur" in German. So is there somewhere a list of available fields and the naming convention?
Thank you for any support on this.
Ricki
Need some help on Template editing!
Re: Need some help on Template editing!
For tips on template editing, including a list of all the tags used in the templates, take a look at these pages: Tags and Creating Templates.
The name of the collection depends on whatever your Library is called in DVDpedia (in that left hand column where all your collections appears) so make sure that 'Bibliothek' is capitalized there.
The name of the collection depends on whatever your Library is called in DVDpedia (in that left hand column where all your collections appears) so make sure that 'Bibliothek' is capitalized there.
Re: Need some help on Template editing!
well, the thing ist that it is capitalized there , any ideas what else I can do? DankeNora wrote: The name of the collection depends on whatever your Library is called in DVDpedia (in that left hand column where all your collections appears) so make sure that 'Bibliothek' is capitalized there.
Ricki
Re: Need some help on Template editing!
You can do so by changing the 'CSS' stylesheet, or adding an inline-style to your html;I’d like to change the B to a capital letter but can not figure out how to do that
For example, if the title of the collection is in a 'H1' tag (<h1>title</h1>) in the template, add this;
Code: Select all
<h1 style='text-transform: capitalize;'>title</h1>
For more information on CSS, look here;
http://www.w3schools.com/css/pr_text_text-transform.asp
Re: Need some help on Template editing!
Thank you all for your help. With a little more reading and trying together with your hints I was able to modify my favourite template as desired.
BTW DVDpedia Rocks also when compared to DVD Profiler, which I used previously under WinXP.
BTW DVDpedia Rocks also when compared to DVD Profiler, which I used previously under WinXP.
Re: Need some help on Template editing!
The smaller lowercase is specific to that template. The original author used the method The Jeztah describes. If you look inside the images folder for the dfmetalbox template it contains an style.css file that has the following attribute:
If you remove the text-transform line it would go back to the original setting.
Glad you are enjoying DVDpedia. Thank you for the kind words. DVD Profiler does have a few tricks that we hope to imitate.
Code: Select all
h1 {
...
text-transform: lowercase;
}
Glad you are enjoying DVDpedia. Thank you for the kind words. DVD Profiler does have a few tricks that we hope to imitate.