Bryan,
How do we make a custom HTML Web Gallery for export?
How can we edit an already existing one. For example in the PM Classic one, I don't want the "title" to be centered, I want it to be left justified.
You would need to copy the current template to your own folder and then modify it like the following:
Modify the cb_title style from this: (use your text editor's "Find" to look for '#cb_title')
#cb_title {
font-family:"#{spec.title_font}", sans-serif; font-size: #{spec.title_font_size}pt;
text-align:center;
color:##{spec.title_font_color}
}
to this:
#cb_title {
font-family:"#{spec.title_font}", sans-serif; font-size: #{spec.title_font_size}pt;
text-align:left;
color:##{spec.title_font_color}
}
(I just changed text-align:center; to text-align:left; the rest was unchanged.)
Then I would change the description of the template so you can easily tell them apart. From this:
def self.template_display_name # template name shown in dialog list box
"PM Classic"
end
to this:
def self.template_display_name # template name shown in dialog list box
"PM Classic (title left aligned)"
end
Then save the file. Next go into Preferences and tell PM where you store your custom user templates.
That should do it.
-Kirk