Home › Forums › Gillion Theme › How to change post layout?
Home › Forums › Gillion Theme › How to change post layout?
Hi,
Would you help me changing the posts layout?
I go to Editor > Customize > Blog > Blog Sytle, and change the layout using available layouts. But nothing happens
Thanks in advanced for your help.
Hi,
Thanks for your answer.
But, I haven’t created any page for the blog page. I use “Blog Post >> Add New” to add new posts to my blog. And the new posts are automatically added to the main page of my blog.
Solution for this topic
Then please create a blog page and set it as front page in your site Reading settings as shown in the attached screenshot.
Thanks for your help. It worked.
Just one more question. I have enabled the Left style for the blog posts, and just wondering if I could remove the thumbnail picture, and show just some texts (Title, excerpt, date, author)
I have sent you a picture which shows what I mean.
Thanks again for your help.
And would mind answering this question as well?
Please check the left sidebar here: https://gillion.shufflehound.com/home/home-4/
Where can I find the “Hot Topics”, “Today’s Pick” and “Stay Connected” widgets to add to my website?
I think I found the answer. I need to use “Recent Posts Version 2” widget
Awesome great to see you got the answer found.
Please advise if you have more questions.
Have a fantastic day!
You can remove the sidebar by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
body.search #sidebar, body.archive #sidebar { display: none; } body.search #content, body.archive #content { width: 100%; } .content-with-sidebar-left .blog-style-masonry article, .content-with-sidebar-right .blog-style-masonry article { width: 49%; }
If you have any more question then please create separate topic for it.
Thanks.
The Sidebar is now removed. But, the layout is somehow messed up.
please check the attached files.
I just want the sidebar to be removed, and see 2 posts in each row.
But after adding that code, the sidebar is gone, but I see just 1 post in each row.
It seems this is happening because some above shared CSS code is not working so please try using below CSS code instead of above shared CSS code.
body.search #sidebar, body.archive #sidebar { display: none; } body.search #content, body.archive #content { width: 100%; } #page-container .content-with-sidebar-left .blog-style-masonry article, #page-container .content-with-sidebar-right .blog-style-masonry article { width: 49%; }