secicig
User
 Fresh Boarder
| Posts: 3 |   | Karma: 0
|
Re:IE7 submenu links don't work - 2008/06/14 08:42
Ok then,
The final solution derives from the fact that I had missed the sense of wrapping in div-layer design in the beginning of my quest.
In a classic safe-secure design, you determine what you want the width of the page. Build a general wrapper layer and set the width as you determined, in CSS's corresponding region. Also we commonly choose text-align :center; code, in this layer to set the whole page symmetrically centered, by arranging the corresponding CSS settings.
The general layout of the design in HTML-PHP has to be like this:
| Code: |
<div id=generalwrapper>
<div id=secondarylevel>
<--! content -->
</div>
<div id=secondarylevel>
<div id=innerlevel>
<--! content -->
<--! content -->
<--! content -->
</div>
</div>
</div>
|
As we can see the wrapper layer involve all the other contents of the site. I made a mistake by dividing the layer into two when applying this technique... (genelkatman should be the wrapper) When I obey the technique described above, the problem is completely solved.
But I still don't know why the links didn't work in depth and what lies beneath. And don't need to know for now...
Thanks again.
Post edited by: secicig, at: 2008/06/14 08:43
Post edited by: secicig, at: 2008/06/14 13:57
Post edited by: secicig, at: 2008/06/14 14:03
|