This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal



May 25, 2011, 7:26 AM
261 Posts

Re: Changing text color without changing other attributes

  • Category: Styles and Themes
  • Platform: Windows
  • Release: 8.5.2
  • Role: Developer
  • Tags: webstandard,themes,css
  • Replies: 2
You need to add your custom css file as a resource to your theme definition document. This way the custom css file gets loaded on the XPage.
 
Next, you add the attributes you want to change in your custom css file, e.g.:

.xspPanelViewColumnHeader {
  color: green;
}

Depending on the order in which the CSS files are loaded, you might need to add the !important declration to the changed styles, e.g.:
 
.xspPanelViewColumnHeader {
  color: green !important;
}

Good luck!
Mark
 
May 25, 2011, 4:46 PM
31 Posts
Re: Changing text color without changing other attributes
Thank you !  That worked perfectly!! It also opens up further customization ideas to me.
 
Kendra 

This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal