UI Design

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all,
Can Any one provide a link to any article of tips for designing good UI in
ASP.NET...

Also any Idea whow to design the toolbar (just like in the Microsoft toolbar
with Microsoft logo) where color fades from one end to other..

Any suggestions will be appreciated..
cheers,
siaj
 
Also any Idea whow to design the toolbar (just like in the Microsoft
toolbar
with Microsoft logo) where color fades from one end to other..
If you are happy with IE only, use css filters. Otherwise just make a
gradient bitmap and use it as a background image.

Eliyahu
 
somethig like:

..menubar
{
background-color:#4e82b9;
font-size:12px;
color:WhiteSmoke;
FILTER:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#1b5086',startColorstr='#4e82b9',
gradientType='0');
BORDER-BOTTOM: #1b5086 1px solid;
BORDER-TOP: #6699CC 1px solid;
}

MattC
 
Back
Top