Posted by Bernhard Sturm on 03/02/07 10:16
Nate12o6 wrote:
> On Mar 1, 11:53 am, Bernhard Sturm <sturmnixs...@datacomm.ch> wrote:
>> Nate12o6 wrote:
>
> Thanks for the help bernhard. Everywhere i turn I am reading to use
> div over tables. Am i just using two many divs or should I use a
> hybrid of both?
>
your approach ist okay, but there are too many nested divs. for instance
you have a construct like this:
<div id="clients">
<a ...
<a ...
</div>
(this can be solved as a <ul> list without the div-container:
<ul id="clients">
<li><a href="..." title="..." /></li>
<li>...
</ul>
then:
<div id="loaderContainerClients">
<div id="loaderClients">
<img... />
</div>
</div>
could be solved as:
<div id="loaderContainerClients">
<img... />
</div>
You need to semantically structure your (X)HTML-documetns
cheers
bernhard
--
www.daszeichen.ch
remove nixspam to reply
[Back to original message]
|