Hi,
I have a problem with the MySQL solution.
http://support.milonic.com/datamenu/
Everything is fine but I can not use:
screenposition = "center"; left="offset=-200";
I get:
screenposition = ""center"; left="offset=-200"";
or
screenposition = "center; left=offset=-200";
neither work.
I guess "mm_phpmenu.php" needs amending?
Any ideas?
Thx
MySQL menu using screenposition offset
-
- Super Advanced
- Posts: 72
- Joined: Fri Jul 01, 2005 3:04 pm
-
- Super Advanced
- Posts: 72
- Joined: Fri Jul 01, 2005 3:04 pm
-
- Super Advanced
- Posts: 72
- Joined: Fri Jul 01, 2005 3:04 pm
Sorry to bump this.
Andy if you can point me in the right direction in editting mm_phpmenu.php I will have a go myself. I'm guessing some sort of check to see if screenposition is used then placing the quotes differently?
screenposition = "center"; left="offset=-200";
instead of:
screenposition = ""center"; left="offset=-200"";
Thx
Andy if you can point me in the right direction in editting mm_phpmenu.php I will have a go myself. I'm guessing some sort of check to see if screenposition is used then placing the quotes differently?
screenposition = "center"; left="offset=-200";
instead of:
screenposition = ""center"; left="offset=-200"";
Thx
Hi,
The syntax: screenposition = "center"; left="offset=-200"; is incorrect.
Offsets need to be placed inside the left parameter.
So, leave screenposition as center and add a left value of offset=-200.
Note that you may need to change the left database field from an Integer to a varchar to accomodate the text.
The output should be like this:
screenposition="center";
left="offset=-200";
Hope this helps,
Andy
The syntax: screenposition = "center"; left="offset=-200"; is incorrect.
Offsets need to be placed inside the left parameter.
So, leave screenposition as center and add a left value of offset=-200.
Note that you may need to change the left database field from an Integer to a varchar to accomodate the text.
The output should be like this:
screenposition="center";
left="offset=-200";
Hope this helps,
Andy
-
- Super Advanced
- Posts: 72
- Joined: Fri Jul 01, 2005 3:04 pm