I want to use 2 theme in a single website. If it is possible then how I can use..

Comments

nevets’s picture

Check out the sections module.

baronmunchowsen’s picture

Also - themekey (in dev but good) http://drupal.org/project/themekey

aaraj12’s picture

I have two diffrent layout for index page and inetnal pages.I have all html, css and JS code. I want to use my own theme.Can i use two theme in a single website

sumitshekhawat7331’s picture

hi i have developed same kind of site....what i have done is .... i used if else condition for this.... means like

if(drupal_is_front_page){
your html code for first theme}
else
{
html code for second theme
}

you can try this otherwise there is an module by using this we can change theme based on taxonomy terms.

means

term 1--------theme 1
term2---------theme 2

etc...