Page 1 of 1

Layer Menu alignment

Posted: Sun Nov 08, 2020 8:35 pm
by cmsintent
Hi ... is there a way to have the NAVIGATION > LAYER MENU aligned to the right side of a LayoutGrid column

I have a 2 column LayoutGrid set to Grid system = flexbox
1st column set to 3x - left/middle
2nd colum set to 9x - right/middel

I drop the Layer Menu into column 2 but no matter what I do I can not get the menu to align to the right side of layout grid so it doesn't show on right side of monitor screen (it only shows to the left of the layoutgrid which in this case kinda centers the menu)

Re: Layer Menu alignment

Posted: Sun Nov 08, 2020 9:01 pm
by Pablo
There is no standard option for this, but you can try this code:

Code: Select all

<style>
#LayerMenu1 
{
    float: right !important;
}
</style>

Re: Layer Menu alignment

Posted: Sun Nov 08, 2020 11:41 pm
by cmsintent
Thanks Pablo ... worked very well.