index | search | no replies | posting guidelines | help login | register
Index » Products » ASP Report Wizard (version 1)
search this forum:
:: Row Customization ::    show all messagesPost a New Message | Post a Reply
Nov 12 2003, 8:47 AM
 Re: Row CustomizationPost a Reply
 Ghost

View this author's profile Send this author a private message Visit author's homepage

from: Washington, DC

Paste the code below into the style section of your report page. It should help you understand the basic style classes.

copy the following code into your .asp file
It might help you understand how to cutomize your reports.

<style>
/*background (line) color*/
.report-table{
    background-color:red;
}
        
/*header row background color*/
.header-row{
    background-color:black;    
}

/*header row text style*/
a.col-header{
    color:aqua;    
    font-family:arial;      
    text-decoration:none;
}
a.col-header:visited{
    color:aqua;
    font-family:arial;    
    text-decoration:none;
}
a.col-header:hover{
    color:lime;
    font-family:arial;    
    text-decoration:underline;
}

/*odd row background color*/
.odd-row{
    background-color:blue;
    color:yellow;
    font-family:tahoma;
    font-style:italic;
    font-weight:bold;
}

/*even row background color*/
.even-row{
    background-color:yellow;
    font-family:courier sans ms;
    font-wieght:bold;
    color:blue;
}
</style>



-------------------------
Ghost
Pages: (1)   [1]

search this forum: