Full Width Problem with page.php
-
I have this theme from ThemeFuse called GameZone, and every changes i have made since the original i usually have fix by my self somehow, but the other day i was tired of PHPBB and converted and move it over completly to BBPress, and it work as is should i got some of the css fix so its almost as ret of the page, the only problem is i found out even i use the themes own “widget” deattachtment for pages i need to be with out side bars Like Guides etc.
Then the BBPress have put my finish touch on hold for the last 36 hrs and i am really irritated over it , because why should a thing i literally find 100 of topics about this problem. Reeally think it is weird there isnt being any solution implented as part of bbpress.
Anyway my forum here is correct size in the “front-page”
1. Frontpage : http://www.playstationforum.dk/debat-forum/
2. Sub-page : http://www.playstationforum.dk/debat/kategori/playstationforum-dk/As yoy see the sub-page dont have full width even i have remove made a page.php and copy it over to my child theme and rename it to bbpress.php and remmove
<?php get_sidebar();?>
This is mention alot of places and everything there is sidebar related, but i can really not figure out what because no matter what i remove it either remove background completly or remove the sites build up. And i have made a Page for it and use the shortcode. – Still nothing – Hope someone can help. I actually change to bbpress because i though the hardest part would actually import everything from PHPBB
here is my code as it is now
<?php global $is_tf_blog_page,$post; $id_post = $post->ID; if(tfuse_options('blog_page') != 0 && $id_post == tfuse_options('blog_page')) $is_tf_blog_page = true; get_header(); if ($is_tf_blog_page) die(); ?> <?php $sidebar_position = tfuse_sidebar_position(); ?> <?php tfuse_shortcode_content('before');?> <div class="main-row content-row"> <div class="container"> <?php if ($sidebar_position == 'left') : ?> <div class="middle-main sidebar-left"> <?php endif;?> <?php if ($sidebar_position == 'right') : ?> <div class="middle-main content-cols2"> <?php endif;?> <?php if ($sidebar_position == 'full') : ?> <div class="middle-main content-full"> <?php endif; ?> <div id="primary" class="content-area"> <div class="inner"> <article class="post post-details"> <?php if(!tfuse_page_options('hide_title')):?> <header class="entry-header"> <h1 class="entry-title"><?php echo get_the_title();?></h1> </header> <?php endif;?> <div class="entry-content"> <?php while ( have_posts() ) : the_post();?> <?php the_content(); ?> <?php break; endwhile; // end of the loop. ?> </div> </article> <?php if ( comments_open() ) : ?> <?php tfuse_comments(); ?> <?php endif;?> </div> </div> <?php if (($sidebar_position == 'right') || ($sidebar_position == 'left')) : ?> <div id="secondary" class="sidebar widget-area"> <div class="inner"> </div> </div> <?php endif; ?> </div> </div> </div> <?php tfuse_shortcode_content('after'); ?> <?php get_footer();?>
- You must be logged in to reply to this topic.