Gary I am starting to agree with you on some points

Recently I was tasked to build this simple menu in Joomla, 

<<attachment: Screen shot 2010-07-29 at 12.50.59 PM.png>>


Instead of images or any other magic trickery,


just a few CSS lines and standard joomla module. 

.menuquickie {
        border:#c8c4c4 solid 1px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius:5px;
        list-style:none;
        color:#000;
        width:300px;
        margin-bottom:0;
}
.menuquickie li {
        border-bottom:#c8c4c4 solid 1px;
        width:100%;
}
.menuquickie .item3 {
        border-bottom:none;
}
.menuquickie .item8 span {
        font-weight:bold;
        padding:5px;
        line-height:200%;
}
.menuquickie li a {
        color:#000;
        text-decoration:none;
        padding:10px;
        padding-left:25px;
        line-height:200%;
}
.menuquickie li a:hover {
        color:#ff4f02;
        text-decoration:none;
}
.menuquickie li ul li {
        display:none;
}
.menuquickie .active {
        width:100%;
        display:block;
!important
}
.menuquickie li ul li {
        padding-left:25px;
        border:0px;
}




IN IE, it displays the same, however there are no rounded corners and they are 
just square, but if you are using internet explorer you are probably a square 
so you get squares.

Chris








On Jul 28, 2010, at 2:16 PM, Gary Mort wrote:

> A few style questions:
> 
> I was curious how others felt about the great fixed vs fluid width debate.
> 
> On the one hand, a fixed width site lets you place things PRECISELY where you 
> want them on the page as far as the left/right corners are concerned.
> 
> On the other hand, I frequently run 2 browsers side by side and fixed width 
> websites makes it much harder to work with them.
> 
> I am leaning towards a fluid width with minimum width hinting.....
> 
> 
> Another question is rounded corners.  I LOOOOVE rounded corners, but I hate 
> the javascript/images that one uses to do them.  As such, my own inclination 
> is towards using the webkit/mozilla rounded corners CSS styling and just let 
> the chips fall to square corners in non-compliant browsers.
> 
> And here is one for Mitch, gradients.   I really hate using image background 
> gradients, but now that CSS3 will allow one to specify gradients, I'm 
> inclined to use them because they just LOOK so much nicer.....but again only 
> for browsers supporting the CSS commands, let other browsers have the older 
> ones.
> 
> Then there is transparent backgrounds...where you place a transparent 
> background on your main content area so it floats above your background...  
> they simply look cool to me....but my wife tells me she has a lot of trouble 
> reading text on transparent backgrounds so I'm thinking out they go 
> personally.
> 
> So, I figured the Joomla list is a nice mix of coders and designers to get 
> various ideas from.
> 
> <ATT00001..txt>

_______________________________________________
New York PHP SIG: Joomla! Mailing List
http://lists.nyphp.org/mailman/listinfo/joomla

NYPHPCon 2006 Presentations Online
http://www.nyphpcon.com

Show Your Participation in New York PHP
http://www.nyphp.org/show_participation.php

Reply via email to