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

CommentFileSizeAuthor
screenshot_fromDemo.jpg93.49 KBzengwenyu
screenshot.jpg54.44 KBzengwenyu

Comments

israelshmueli’s picture

For 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.