CMS Development

lawolfey
Participant

Want to freeze a module group on the bottom of a web page

SOLVE

I want to freeze the bottom module in a web page so that it is always visible when a viewer is scrolling the page, similar to our menu bar at the top. I have tried a few things to no avail. I added position: fixed to the CSS Declaration of module group and that made the whole thing dissapear. The module group contains a rich text block and a form. I am not a coder and have no idea what I am doing. I created a lead flow but it is not exaclty what I want. Thanks in advance for any help!

0 Upvotes
1 Accepted solution
TRooInbound
Solution
Key Advisor

Want to freeze a module group on the bottom of a web page

SOLVE

Hi @lawolfey,

 

Just position fixed is not working, have to give bottom = 0 and width =100% to that section targeted CSS.

.bottom-class-name {
     position:fixed;
     bottom:0;
     width:100% !important;
     left:0;
     background-color:#fff;
}

add above CSS Code to your stylesheet with replace 'bottom-class-name' to your class name.

 

Did my post help answer your query? Help the Community by marking it as a solution.

 

Team TRooInbound

 

View solution in original post

0 Upvotes
3 Replies 3
TRooInbound
Solution
Key Advisor

Want to freeze a module group on the bottom of a web page

SOLVE

Hi @lawolfey,

 

Just position fixed is not working, have to give bottom = 0 and width =100% to that section targeted CSS.

.bottom-class-name {
     position:fixed;
     bottom:0;
     width:100% !important;
     left:0;
     background-color:#fff;
}

add above CSS Code to your stylesheet with replace 'bottom-class-name' to your class name.

 

Did my post help answer your query? Help the Community by marking it as a solution.

 

Team TRooInbound

 

0 Upvotes
lawolfey
Participant

Want to freeze a module group on the bottom of a web page

SOLVE

Thank you! I was able to make that work! Appreciate it!

TRooInbound
Key Advisor

Want to freeze a module group on the bottom of a web page

SOLVE

Hi @lawolfey,

 

Cool Heart Cheers.

 

for more help like this visit us at www.trooinbound.com or mail us at hello@trooinbound.com

 

Team TRooInbound

0 Upvotes