UI Design

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
 
E

Eliyahu Goldin

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
 
M

MattC

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top