Page 1 of 1

Can't center the buttons

PostPosted: Thu Aug 21, 2008 12:06 am
by dhmurdock
OK, this may be a really dumb question, but I can't get the menu items to center on the page. I've looked throughout the software and I can't see anywhere to change the placement of the buttons. Do I have to edit the cs or jss file, and if so what do I change? You can see the current output at http://www.palmspringssisters.org/button_test.htm

Re: Can't center the buttons

PostPosted: Thu Aug 21, 2008 9:36 am
by MikeyB
Seems to work if I add align="center" to the following line:
<table id="cbinsmenuebul_table" width="0" cellpadding="0" cellspacing="0" border="0">
becomes
<table id="cbinsmenuebul_table" width="0" cellpadding="0" cellspacing="0" border="0" align="center">

or you could add
<div align="center"> just before the <table...
and </div> after </table>

Cheers,
Mike

Re: Can't center the buttons

PostPosted: Fri Aug 22, 2008 12:51 am
by dhmurdock
Duh, I just never looked down far enough to see the table section, I kept trying to put in the align="center" at the top of the output code, which didn't work. It would still be nice if there was a CENTER, LEFT, RIGHT and maybe even JUSTIFY command in the program though.

T :D hanks for the solution, it works perfectly now.

Dave