New Position Structure - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

New Position Structure

Dinuka

Dinuka

Template 2 years ago

I need to create position as below on helix ultimate framework. (Template - shaper_wayne_corp) https://prnt.sc/qDnGV3nktnHr

0
3 Answers
Pavel
Pavel
Accepted Answer
2 years ago #98872

Hi.

Using only template settings witout extra codding, it's not possible.

But you can easily do this using only CSS (witout overriding php files).

Using the standard Helix settings, divide the section into three columns, add the necessary positions and use the CSS Grid Technology to create any layout of these three columns

write code...

#sp-grid-layout-section .row {
    display: grid;
    grid-template-columns: 200px 1fr;
}
#sp-grid-layout-section .col-lg-4 {
    width: 100%;
}
#sp-position1 {
    grid-row: 1/3;
}

...and Boom! :)

0
Dinuka
Dinuka
Accepted Answer
2 years ago #98875

Thank you so much

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 years ago #98889

Thanks Pavel for answering so nicely:)

0