This topic is locked
[SOLVED]

 menu page layout

7/25/2014 3:21:33 AM
PHPRunner General questions
C
cristi author

I want to modify the layout of the menu page.

I have two menu side by side by but I want them centered and instead they are left aligned.

Basically I managed to do this:

what I have
But I want something like this:

what I want
The code so far is this:

@version=2

@width=400
beginblock width=10% top

begincontainer vertical width=400 style=menu align=center menu

brick color1 login_menu



endcontainer

endblock

beginblock width=100% center

begincontainer vertical width=400 style=menu align=center menu



brick vmenu

endcontainer

endblock

beginblock width=100% right

begincontainer vertical width=400 style=menu align=center menu



brick vmenu

endcontainer

endblock
Admin 7/25/2014

Simply changing align to be center worked for me:

@version=2

beginblock top

begincontainer vertical width=400 align=center style=1 menu

brick color2 login_menu

brick vmenu

endcontainer

endblock
C
cristi author 7/25/2014

Thank you.