Hello, i want to change the places of homepage elements on highlight demo. How can i do this, is there a simple way?
Please help!
Hello, i want to change the places of homepage elements on highlight demo. How can i do this, is there a simple way?
Please help!
How do you want to change?
I want to exchange their places, take element 2 to the left and one to the middle.
Put the following code into Ghost settings > Code injection > Site header:
<style>
.gh-header.is-highlight .gh-header-left {
grid-column: 4 / 13;
grid-row: 1;
}
.gh-header.is-highlight .gh-header-middle {
grid-column: 1 / 4;
grid-row: 1;
}
</style>
It perfectly worked. Thank you so much.
I also want to make the font size a little smaller and increase the space on the left and right side of the site. Could you help with this too please?
Thank you so much.