- This topic has 3 replies, 3 voices, and was last updated 5 years, 5 months ago by Hash.
- AuthorPosts
- November 7, 2018 at 4:52 am #8758juliekgeParticipant
Hello – on my static blog posts page, I would like to not have my sidebar appear, however it does not change from having the right side bar. Can you help me to fix this?
Thanks,!November 8, 2018 at 2:55 pm #8784HashKeymasterHi,
The sidebar option does not work for blog page. If you want to have a full width blog page then you can do it will custom CSS Code. Go to Appearance > Customize > Additional CSS and paste the below CSS code
body. blog #secondary{ display:none; }
body. blog #primary{width:100%; float:none;}January 13, 2019 at 12:25 am #9861ConfidemusParticipantI want to remove the sidebar from my blog page but do not want text and pictures to be pushed out full width, but just to show the “normal” width blog posts centered on the page – how do i need to modiify the above css to make that happen please?
January 13, 2019 at 8:40 pm #9865HashKeymasterTry this CSS
body. blog #secondary{ display:none; }
body. blog #primary{ float:none; margin-left: auto; margin-right: auto;} - AuthorPosts
- You must be logged in to reply to this topic.