Hi,
I am new to Drupal, but with experience from other CMS's,
and with Drupal I am going through a situation.

I am creating some pages that have a great amount of CSS and Javascript,
but if I only reload de page, the changes doesn't take effect.

I would like to know if theres is a way to reload the theme I am using to see the effects
of my final CSS and Javascript, because actually I am switching between themes to do such job,
wich I am finding extremely boring, since with other CMS it is not a matter of fact.

Thanks in advance...

Comments

matt_harrold’s picture

Have a look at the template.php file for your Theme.

Does it have the following line at the top?

drupal_rebuild_theme_registry();

If not ... put it there while your theme is under development.

Also, ensure you turn off CSS and JS aggregation in the performance settings.

gilbertoalbino’s picture

Yes, pretty fine!
It is now working.
Thanks very much for this useful help!