By jhoge on
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; ?>
<? 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
just started working on a new
just started working on a new theme after a break since 6.14 and am having the same problem...
Your tags should be : <?php
Your tags should be :
print $contentprint $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