Very strange problem with view.php
PermalinkCan't work out whats happening here but I have set up the page not found single page to use my site template. I know this page uses the view.php page type but the strange thing is it seems to loose some of its styling. Heres what happens...
The slideshow i'm using fades to each image but they appear beneath each other and also the styling I have on my form has gone.
Another strange thing is that when i'm logged in it appears OK.
All other pages in the site are fine.
I have attached a two screen grabs so you can see what I mean.
Cheers
Karl

You might be loading some things twice plus your css could be causing some major problems.
<link rel="stylesheet" type="text/css" href="/packages/pronews/blocks/pronews_list/templates/news_list/view.css?v=be6b839e9460c45eaa891addb3786155" /> <link rel="stylesheet" type="text/css" href="/concrete/blocks/slideshow/view.css?v=be6b839e9460c45eaa891addb3786155" />
The code for the two files which generate this page are
view.php (in my theme folder)
<?php defined('C5_EXECUTE') or die(_("Access Denied.")); $this->inc('elements/header.php'); ?> <div id="slideshow"><? $block = Block::getByName('slideshow'); if( $block && $block->bID ) $block->display(); ?></div> <div id="sidebar"> <div id="sidebarshadowl"></div> <div id="sidebarcontent"> <div id="sidebarhead"><?php $a = new Area('Sidebar Title'); $a->setBlockLimit(1); $a->display($c); ?></div>
page_not_found.php (in my single_pages folder)