HelmutSteiner
HelmutSteiner

Reputation: 99

Liferay aui css overriding

we have created a simple Webcontent template with Liferay 6.2 EE.

The template was built with freemarker.

Now we want to use our own homemade css file to apply our style to the webcontent template.

But liferay's aui.css seems to override some of our css styles.

What's the best way to integrate our css file within freemarkers webcontent template ?

Is it possible to override aui.css ?

Thanks

Upvotes: 2

Views: 2011

Answers (1)

Harpreet Saini
Harpreet Saini

Reputation: 31

Wrap your styles within aui class:

.aui {
//your styles goes here
}

Upvotes: 2

Related Questions