Praful Bagai
Praful Bagai

Reputation: 17412

Apply drupal theme

I download Drupal theme(goodnex) from here. I applied it on my Drupal website, but it didn't work. CSS files are missing.

I'm using Drupal7 and kept my themes in /sites/all/themes folder.

What I'm doing wrong?

Upvotes: 0

Views: 78

Answers (2)

heart.cooks.mind
heart.cooks.mind

Reputation: 1165

Another possible answer is that there are no CSS files. If the theme is using SASS you might need to compile SASS first.

The link to the theme does not work, so I can't be sure...

Upvotes: 1

user3563097
user3563097

Reputation: 179

Very often what causes it is that your webserver does not have access to your files folder so it other does not create the files or it can not read them.

  1. Check your drupal files settings under /admin/config/media/file-system: 'Public file system path' and 'Temporary directory'.
  2. Also check your actual folders permissions in the file system. Your files folder (/sites/default/files') is set to chmod 755 and works fine.

Upvotes: 1

Related Questions