1

I am using Icefaces in my web application. I want to override some styles that are defined in xp.css.

Sled
  • 18,541
  • 27
  • 119
  • 168

1 Answers1

0
  1. Create your own css file, eg. style.css.
  2. Put it into your web pages directory, beside the WEB-INF directory.
  3. Reference your css file in the head tag of your xhtml file(s)

You can reference it the following way:

 <link href="style.css" rel="stylesheet" type="text/css" />
Donato Szilagyi
  • 4,279
  • 4
  • 36
  • 53