[Resolved] Section vertical

Home Forums Support [Resolved] Section vertical

Home Forums Support Section vertical

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #228631
    Thierry

    Hello,

    I want make this template, it’s possible with GP ?

    template

    how i can do this ?

    Of course the problem is the vertical section.

    Thx

    #228676
    Tom
    Lead Developer
    Lead Developer

    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 πŸ™‚

    #228746
    Thierry

    Thank you Tom.

    My problem for the section area (green on the image) it’s possible to make this with GP ?

    #228819
    Tom
    Lead Developer
    Lead Developer

    It’s possible, but it needs to be coded. The code I provided above is the start to that coding πŸ™‚

    #228821
    Thierry

    Ok tank you Tom

    #228822
    Tom
    Lead Developer
    Lead Developer

    No problem πŸ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.