Display CSS of block in page
Permalink
Hi Guys
I have a small problem, We have decided to try build a website that is basically just a page list from concrete 5.
The website is as follows:
In the full.php file we have set up a page list that gets all the children from the "home" page and sets up each of these pages as a web page, if these child pages have children, we set them up as sub pages of the child page. (hopefully this makes sense).
so in the full.php we have div's that display the content as follows:
The problem is, when we add content to the child page, ie. a content block with a background color for example grey.
We pull it through to the full.php page, and it displays the content but not with the background color.
Any tips on how to pull through the styled content?
I have a small problem, We have decided to try build a website that is basically just a page list from concrete 5.
The website is as follows:
In the full.php file we have set up a page list that gets all the children from the "home" page and sets up each of these pages as a web page, if these child pages have children, we set them up as sub pages of the child page. (hopefully this makes sense).
so in the full.php we have div's that display the content as follows:
<div id="page1"> $b = new Area("Main"); $b->display($child); </div>
The problem is, when we add content to the child page, ie. a content block with a background color for example grey.
We pull it through to the full.php page, and it displays the content but not with the background color.
Any tips on how to pull through the styled content?