Hello to all
This is about the miss alignment ( of the logo to the right ) that is produced in IE7 when we separate logo and menu and the descriptions bellow are probably valid only for Corporate 2 for Joomla 1.6
zbeatty suggested his way to separate logo and menu in corporate2 (so logo can be above the menu) as follows:
In template.css he changed line 61 to be the following:
#gkLogo { height: 40px; margin: 0; line-height: 100%; position: absolute; top: 3px;}
Then, in layout.css he modified line 14:
#gkMenuNav {float: left; margin:25px 0 10px 0; width: 100%}
To make it full width he went to line 52 of my template.css file and changed the following:
#gkMenu { float: left; width: 100%; height: 40px; background-color: #6C6459 }
And this worked very well. The only problem is in IE7 the logo will be totally shifted
to the right.
My solution was to solve this was to add to #gkLogo ( tempalate.css) the code
left: 10px; ( or what anyone need it to be from left )
so it became:
#gkLogo { height: 103px; margin: 0; line-height: 100%; position: absolute; top: 35px; [b]left: 10px;}[/b]
This totally solved this issue on IE7.
Miguel Garcia