I would like to put the
But it doesnt seem to work. Any suggestions ?
THIS WORKS
THIS DOES NOT !!
CRAZY ISNT IT !!
why do I have to put my navigation stuff directly above the
scrollable class ? My CSS is exactly the same for header and mainContent... so this is really stupid. Could somebody tell me why
this happens and how to solve this ?
Somebody please.
<ul class="tabs">
in the header div. But it doesnt seem to work. Any suggestions ?
THIS WORKS
<div id="container" class="container_12">
<div id="repeater" class="grid_12">
<div id="header" class="grid_12">
</div><!--End Header-->
<div id="mainContent" class="grid_12">
<ul class="tabs">
<li>welcome</li>
<li>about us</li>
<li>services</li>
<li>contact</li>
</ul>
<div class="scrollable">
<div id="blocks">
<div id="welcome">
<h1>welcome</h1>
</div>
<div id="about us">
<h1>about us</h1>
</div>
<div id="services">
<h1>services</h1>
</div>
<div id="contact">
<h1>contact</h1>
</div>
</div>
</div>
</div>
<div id="footer" class="grid_12"> </div>
</div>
</div> <!--End container-->
THIS DOES NOT !!
<div id="container" class="container_12">
<div id="repeater" class="grid_12">
<div id="header" class="grid_12">
<ul class="tabs">
<li>welkom</li>
<li>about us</li>
<li>services</li>
<li>contact</li>
</ul>
</div><!--End Header-->
<div id="mainContent" class="grid_12">
<div class="scrollable">
<div id="blocks">
<div id="welcome">
<h1>welcome</h1>
</div>
<div id="about us">
<h1>about us</h1>
</div>
<div id="services">
<h1>services</h1>
</div>
<div id="contact">
<h1>contact</h1>
</div>
</div>
</div>
</div>
<div id="footer" class="grid_12"> </div>
</div>
</div> <!--End container-->
CRAZY ISNT IT !!
why do I have to put my navigation stuff directly above the
scrollable class ? My CSS is exactly the same for header and mainContent... so this is really stupid. Could somebody tell me why
this happens and how to solve this ?
Somebody please.