solved Forum

Dazed
Dazed
@dazed
11 years ago
1,022 posts
ok guys I am not sure how I could do this but thought I would ask. The JR Forum here looks like a true forum. It is wide and just looks good. In ProJam, the left side menu is wide which I like for profiles but not the forum. That skin is also not 100% width so the forum looks really small.

How could I change this for a specific profile only so my forum looks more like a forum?
updated by @dazed: 05/15/14 03:30:54AM
douglas
@douglas
11 years ago
2,807 posts
Open your skins/jrProJam/profile_header.tpl and find this:

<div class="col4">

and change it to this:

{if isset($_post.option) && $_post.option == 'forum' && $profile_id == '1'}
<div class="col3">{else}
<div class="col4">{/if}

then open your skins/jrProJam/profile_item_list.tpl file and find this:

<div class="col8 last">

and change it to this:

{if isset($_post.module) && $_post.module == 'jrForum' && $profile_id == '1'}
<div class="col9 last">{else}
<div class="col8 last">{/if}

Of course you'll want to change the profile_id in the if statement to the id of the profile you want to use this for and you can change the column numbers to what you want, I think a col2 would be too small for the side, but that is up to you.

Hope this helps,
Douglas


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
Dazed
Dazed
@dazed
11 years ago
1,022 posts
This looks better! Thanks Douglas :)
douglas
@douglas
11 years ago
2,807 posts
Your welcome! :)


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos