jrAction_item_index
Jamroom Developers
got the images, deleted them.
Not understanding the problem though.
The full contents of jrElastic profile_item_list.tpl is
{if $profile_disable_sidebar != 1}
<div class="col9 last">{else}
<div class="col12 last">{/if}
{$profile_item_list_content}
</div>In your screenshots it does contain the sidebar.
What I'm understanding is your getting:
<div class="col8 last">is it coming in from with profile_item_list.tpl or outside or coiming in from {$profile_item_list_content}
Maybe change it to:
aaaaaaaaaaaaaaaaaaaaaaa
{if $profile_disable_sidebar != 1}
<div class="col9 last">{else}
<div class="col12 last">{/if}
bbbbbbbbbbbbbbbbbb
{$profile_item_list_content}
cccccccccccccccccccccccc
</div>
and see where the class="col8 last" comes out relative to that:
* before aaaaaaaa then its coming from profile_header.tpl
* after bbbbbbbbbbb then its coming from $profile_item_list_contents
or turn on the "template name in source" option in Developer Tools module to get the template names output to source code.