Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reporting with ODS htmlcss 1

Status
Not open for further replies.

mehulzip

MIS
Aug 6, 2004
6
US
Hi,
I made the reports using "ods htmlcss" to get rid of problem of entire title statements in the first cell of the spreadsheet. But now I am not able to change the title font size of the reports.I tried to change fontsize parameters with the stylesheet that I am using but it didn't work out. It seems me that I have to make custom tagset that contains desired font size values and should use it ods procedure. But I don't know how to create such tagset.
Has anyone encountered such problem exporting reports to excel! Plz let me know if anyone can guide me in this matter.Thanks.
 
The Font size of the title is set by the class System Title I believe. What you need to do is change the font size parameter under the .SystemTitle class in your css file :-

.SystemTitle
{
font-family: Arial, Helvetica, Helv;
font-size: 14pt;
font-weight: bold;
font-style: italic;
color: #000000;
background-color: #FFFFFF;
text-align: center;
}


That should do the job.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top