2009/2/27 Gunlaug Sørtun <gunla...@c2i.net>

> Eric Katz wrote:
>
>> So I think I have really screwed up some stuff right now, i can't
>> either of my lists formatted properly the way I want them to be in
>> the Products by Genre Window here:
>> http://team-identity.org/akathletics/newcode/
>>
>
> Same as for the part above: IE7 and older need a hack to render *as*
> inline-block. Also some margins and paddings to fix for intended line-up...
>
> #genres {
>       width:675px;
>       margin:0 auto;
>       list-style:none;
>       text-align: center;
>       padding: 0 0 8px 0;
> }
>
> #genres li {
>  display:-moz-inline-box;
>       display:inline-block;
>       padding:0 10px;
>       margin: 3px 0;
>       border-right: solid 1px #bbb;
>  vertical-align: bottom;
> }
>
> /* fix IE6 */
> * html #genres li {display: inline;}
> /* fix IE7 */
> *+html #genres li {display: inline;}
>
> #genres h3 {
>        font-size:1em;
>        color:#929292;
>        margin: 0;
> }
>
> *Important*: keep the non-valid 'display:-moz-inline-box;' in there, or
> else all the numerous browsers based on slightly older Gecko engines
> will not render it well - see Philippe's post on earlier case for your
> layout.
> Working solutions _are_ more important than validity in such cases.
>
> BTW: why are you using an <h3> in those lists? I can't see any reason
> whatsoever for headlines to be used there, but maybe you have one..?
>
> regards
>        Georg
> --
> http://www.gunlaug.no


I guess they don't have to be there ^_^ I wanted it set up so the 'genres'
were an h3 in relevance to what the actual site is for, selling the products
which are set up with h2 tags in their respective lists, with h1 being the
'our genre products,'  and of course the h1s at the top of the page that
make up the original list buttons i had set up. Do you think this is a poor
idea, or ? I really just started playing with it not sure how seo friendly
it is or if its even all that proper. I went ahead and put the -moz
inline-block hack again.

Also do you know any reason why my javascript tabs set up through jquery
aren't showing properly in internet explorer? Maybe it has to do with the
other list problems I have already set up with the target #divs each link in
#genres are supposed to display.

Eric Katz
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to