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)
Layer Menu alignment
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
Re: Layer Menu alignment
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
Thanks Pablo ... worked very well.