Hi,
Is it possible to make a full width blog post? I know we can have a full-width blog image, and then the content with a sidebar. Is it possible, that when you click on a blog post, the entire blog takes up the 960px width of the site?
Hi,
Is it possible to make a full width blog post? I know we can have a full-width blog image, and then the content with a sidebar. Is it possible, that when you click on a blog post, the entire blog takes up the 960px width of the site?
Try following - add this code:
.template-blog.template-single-blog.content{
width: 100%;
}
to css/custom.css. Then open up single.php and remove following code:
<?php
if(empty($avia_config['currently_viewing'])) $avia_config['currently_viewing'] = "blog";
//get the sidebar
get_sidebar();
?>
I'm not sure if other adjustments are required (obviously the theme isn't layed out for fullwidth blog posts out of the box) but it's a good starting point.
Can I create a separate template for it though?I don't want it to apply to all blog posts..
Hi!
No, it's not easily possible to create different post templates. Afaik only pages support the template feature without third party plugin integration, etc.
Regards,
Peter
You must log in to post.