Hello there @lankyman26,
hope you’re doing well! 🙂
You should first select the Sidebar Location settings of your custom sidebar:
https://monosnap.com/file/D59GJYbzdLfSMfypkYKAAZAYst1U4i
and then select the Front Page under the For Archives -> Archive Types tab:
https://monosnap.com/file/R0iirdvIcFEUZgmgiFGxDSh3W632zI
Your custom sidebar can just contain nothing or an empty Text widget and use any CSS required for styling.
Warm regards,
Dimitris
Hi. Thanks for this – it has done the trick. I’m not great with CSS though, so any advice on what to use to centre the page?
Hello @lankyman26,
Usually using margin: 0 auto; and defined width for the element will centre it. So, for example, you want to center div:
div {
width: 100px;
margin: 0 auto;
}
and this will do the work.
Kasia