Inline menu to align at bottom of section

Hello,
I would like to have the inline menu to align at the bottom of the hero image section and for the padding on each side to be much less as shown in the attached image.
The url is:https://mcmahonforda.com/get-involved/
Thanks in advance

Hi @Jennine,

Thanks for writing in!

To achieve what you have in mind, please edit the page back in Pro editor and click the row of the inline menu. In the row settings, find the “Customize” tab and insert a custom fixed-bottom ID. And then insert the following Pro editor’s Custom CSS in the settings tab, Settings > Custom CSS.

@media(min-width: 767px){
    #fixed-bottom {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        margin-left: -400px;
        width: 800px;
        max-width: 800px;
    }
}

We would loved to know if this has work for you. Thank you.

worked great. Thanks :grinning:

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.