Archived topic
Section vertical
5 replies · Started by Thierry on September 22, 2016
Hello,
I want make this template, it's possible with GP ?

how i can do this ?
Of course the problem is the vertical section.
Thx
You would have to code it yourself using GP Hooks and CSS.
For example, in the wp_footer area:
<div class="sticky-side-area hide-on-mobile hide-on-tablet">Content in here</div>
Then you CSS:
.sticky-side-area {
position: fixed;
right: 0;
top: 0;
height: 100%;
width: 300px;
background: blue;
z-index: 999;
}
Just a very simple starting point, but it should get you going :)
Thank you Tom.
My problem for the section area (green on the image) it's possible to make this with GP ?
It's possible, but it needs to be coded. The code I provided above is the start to that coding :)
Ok tank you Tom
No problem :)