Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to find theme/template used by site created using Joomla

I would like to know the theme that is used by some website.

E.g. I would like to know the theme that is used by this site (reference).

What are the steps to find the theme/template that is used by xyz site.

like image 863
Fahim Parkar Avatar asked Sep 07 '25 20:09

Fahim Parkar


2 Answers

Speaking about Joomla specifically, it has a folder named templates in which templates are kept. I usually find out about the templates using

  • The path (for joomla it would be /templates/(Theme Name)/style.css)
  • By viewing source of the CSS files. A number of sites leave the template meta data untouched in there.

However, if the designer changes the template directory name or removes the meta data from within the css files or builds his/her own css from ground up. There wont be much left to identify the template. Hence you will have to do it the hard way , by identifying the CMS used and then browsing thru CMS specific templates. :)

Hope this helps you!

like image 71
Umair Khan Avatar answered Sep 13 '25 11:09

Umair Khan


You can just open Firebug, inspect the page and it will some up with a few relevant links that will show you the template that is being used.

For example for the Pizza Hut website you provided:

*http://www.pizzahut.fr/skin/frontend/pizza_new/default/favicon.ico*

like image 35
Lodder Avatar answered Sep 13 '25 11:09

Lodder