1

I am using LIferay Theme to create a theme for a website. IN the portal_normal.vm file, I have included all the html code and css I have defined in custom.css

THe problem is that css from custom.css is not getting applied to portal_normal.vm page

SHould I include some file in velocity file which tells that custom.css should be included?

Also is it ok to include all css code in velocity?

Regards

EDIT:

custom.css and portal_normal.vm are inside _diffs folder

user2822187
  • 307
  • 2
  • 11
  • 26

2 Answers2

1

put the custom.css under ~/theme/docroot/_diffs/css/custom.css

see the main.css in ~/theme/docroot/css/main.css it should include

...
@import url(custom.css);
...
Mark
  • 17,887
  • 13
  • 66
  • 93
0

It should work may be problem in browser cache.. try to run ant clean and then run ant deploy.

and also try to copy portal_normal.vm file to _diff/templates directory.

_diff/templates/portal_noraml.vm and change here.

Meera Prince
  • 177
  • 3
  • Thanks for reply. My files are under _diffs folder. And I haave cleant n deployed it many times but css is not getting applied in any way – user2822187 Apr 14 '14 at 07:22