Hei.
I successfully created clonable templates for my projects although i am experiencing problems with the project_list page. To be more specific, I am able to to preview the new projects in list view via a project_list.html (which I have placed in the snippets folder in couch) although the listed projects don't seem to be taking notice of the css rules already present. The other elements of the page respond to css rules though - ONLY THE DYNAMIC LISTED PROJECTS FAIL.
The static project_list.html is setup to display projects in a masonry layout view although upon configuring couch, the listed projects get displaced all over the page. I have tried to reset the css rules by trying to adjust the rules via console mode but when i edit the css files to match the new rules, a refresh (and in fact signing out of couch and re-booting the computer ) does not take notice of them. It is as though the template in the snippets folder does not respond to the css rules at all.
here is the project_list.html
Any assistance will be highly appreciated. Thanks
I successfully created clonable templates for my projects although i am experiencing problems with the project_list page. To be more specific, I am able to to preview the new projects in list view via a project_list.html (which I have placed in the snippets folder in couch) although the listed projects don't seem to be taking notice of the css rules already present. The other elements of the page respond to css rules though - ONLY THE DYNAMIC LISTED PROJECTS FAIL.
The static project_list.html is setup to display projects in a masonry layout view although upon configuring couch, the listed projects get displaced all over the page. I have tried to reset the css rules by trying to adjust the rules via console mode but when i edit the css files to match the new rules, a refresh (and in fact signing out of couch and re-booting the computer ) does not take notice of them. It is as though the template in the snippets folder does not respond to the css rules at all.
here is the project_list.html
- Code: Select all
<div class="portfolioContainer col-md-12 ui-sortable">
<cms:pages masterpage='project.php' >
<div class="grid-sizer"></div>
<div class="col-md-4 col-sm-4 portlets grid-item print">
<div class="panel">
<div class="panel-header ">
<h3><i class="icon-bulb"></i> <strong><a href="
<cms:show k_page_link />"><cms:show k_page_title /></a></h3>
</div>
<div class="panel-content">
<figure><img src="<cms:show thumb />" alt=""/></figure>
</div>
</div>
<div class="item-content"><cms:show project_brief /></div>
</div>
</cms:pages>
</div>
Any assistance will be highly appreciated. Thanks