Hello ThemeCo Staff,
I am currently working on a portfolio site and I am trying to make a column within a row on one of my pages sticky so that it stays on the page as you scroll through the images. The column contains basic information about the project and I would like that to be readable no matter which image you are looking at.
I have tried adding a tiny snippet of CSS to the element.
$el {
position: fixed;
}
The issue is that this simply drops the element on the top left of the page. I then tried the following:
$el {
position: fixed;
left: 1100px;
}
However I seem to lose the formatting on the bounding area of the column when I do this. I’m not really sure what to do from here. I look forward to your reply.
Thanks,
Landon Brower