NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Alberto on December 06, 2009, 07:07:08 AM
-
Hi,
No matter what I choose, Rounded or Plain the Header and Footer appears allways plain.
See attached images.
One more thing: look at the space between the menu and the header line and the space between the header line and the first prompt, they dissapeared.
There were checks in the form template that dissapered too.
Now how can we add these blank lines between?
Thanks
Alberto
[attachment deleted by admin]
-
Which browser are you using?
Cheers
Bruce
-
FB
Here goes an IE image...
THanks
Alberto
[attachment deleted by admin]
-
I've fixed the minor problem with the "rounded" border in FF etc.
Thanks for that. (Actually the fix may sort out some other things as well, but I'll keep you posted on that.)
In fact, you can apply the fix there. In the netWeb.clw file, search for Combine, and change the two IF statements so the code reads like this;
code
if not omitted(4)
loc = clip(p_local)
if loc[1] <> ' ' and loc <> ''
return loc
end
End
if not omitted(3)
locdef = clip(p_override)
if locdef[1] <> ' ' and locdef <> ''
return left(locdef) & loc
end
end
etc
Regarding the blank space after the menu:
I'm moving the generated code more an more to using CSS for layout as well as presentation. So, for example, to add a bottom margin to the chromeMenu, set the "style" for the chrome menu to be
'chromemenu nt-margin-bottom'
To give the menu rounded corners (in everything except IE) change it to
'chromemenu nt-margin-bottom ui-corner-all'
If you want there to be a small gap _above_ the menu (after the header) then you can either add 'nt-margin-bottom' to the header, or add 'nt-margin-top- to the menu. So, for example, the menu might become
'chromemenu nt-margin-bottom ui-corner-all nt-margin-top'
Cheers
Bruce