Active
Project:
FontFolio
Version:
7.x-1.1
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
25 Apr 2013 at 07:44 UTC
Updated:
25 Apr 2013 at 18:16 UTC
I love fontfolio very much but I can't get same result as your example, In my view the code generated by view are all inside "single_left", in your demo they are inside "content" directly, I follow handbook direction times but still can't get right.
I'm new for drupal, Can u please help me figure this out,
Many thanks
zeng
| Comment | File | Size | Author |
|---|---|---|---|
| screenshot_fromDemo.jpg | 93.49 KB | zengwenyu | |
| screenshot.jpg | 54.44 KB | zengwenyu |
Comments
Comment #1
israelshmueli commentedFor pages that are not front page or taxonomy pages, main content region is warped inside
<div class="single_left">In fontfolio 7.x-2.3 version this happens because in page.tpl.php file on lines 124 and 132 you will find the following PHP condition:
if (!$is_front && (arg(0) != 'taxonomy')) :I guess your view is not on taxonomy page or front page so try to add to one more condition.
One that will test not empty:
if (!$is_front && (arg(0) != 'taxonomy') && $page['sidebar']) :You should modify on both lines . 124 and 132.
I believe this will make the content spread full page width.
I did not tested this change myself so tell me if it doesn't work.