That will depend on what theme your running. The KB articles are just displayed using your standard post view of your theme.
My theme is smartline lite.
Id like to remove the sidebar somehow even if i needed another plugin.
Or at least be able to change what sidebar is displayed/used.
If there any php/ccs i can use to remove the sidebar and make it full width you think?
Hi Tommy, I looked at the theme and I am not completely familiar with it. It does a template-fullwidth.php which I think displays pages in full width.
You could try to duplicate this and then change the name to: single-wz_knowledgebase.php
Another option worth trying is (with the same filename as above)
<?php get_header(); ?>
<div id="wrap" class="clearfix template-fullwidth">
<section id="content-full" class="primary" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'content', 'single' );
endwhile;
endif; ?>
<?php comments_template(); ?>
</section>
</div>
<?php get_footer(); ?>