tags:

views:

58

answers:

1

Hi,

i have the typical cover page with the logining form that doesn't have the layout with the menu bar that the intern pages of the site have.

So i have this line in view.yml:

signinSuccess:
  has_layout:     false

As you know, in this way the .css are not loaded. So what can i do to load the .css?

Regards

Javi

+4  A: 

Use a different named layout.

signinSuccess:
     layout:     "some_other_file"

Then create the layout file and voila.

Coronatus