I've recently started customizing a theme, and put it in /sites/all/themes. I activated it, and the structure in page.tpl.php looks something like this (very basic to just check that it works):

//header, body opening tag, etc.

<? print $content ?>
<? print $feed_icons; ?>

//footer, body closing tag, etc.

That's all there is. The stylesheet is being picked up fine as well. However, instead of getting the nodes within that "wide" div, none of these divs are present at all, and there are divs called "main-squeeze" and "block-block" instead. I looked through the other files and still can't figure out where these are coming from.

I can't figure out what happened to my poor divs. Any help is appreciated. Thanks!

Comments

Madapple’s picture

just started working on a new theme after a break since 6.14 and am having the same problem...

beckyjohnson’s picture

Your tags should be : print $content print $feed_icons;

Also, your custom theme should be in sites/all/themes/custom/name_of_theme.

Also, I think a lot of the classes like .block-block and such are generated by core drupal.

Becky