Reputation: 99
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
Reputation: 31
Wrap your styles within aui class:
.aui {
//your styles goes here
}
Upvotes: 2