Skip to main content
Inspiring
February 9, 2007
Question

ASP look and feel extension?

  • February 9, 2007
  • 3 replies
  • 393 views
Are there any extension to enhance the look of text boxes etc. I am using
asp VB pages. The database side of thing etc is great but the look is very
dated.

Any pointers appreciated.

SteveW


This topic has been closed for replies.

3 replies

Inspiring
February 9, 2007
http://www.theelbow.com/steve.asp

right click the page and view the code.




see the css in the head.

and see the textareas etc in the body,

<input name="Submit" type="submit" class="btn" value="Submit">
above is a button with the class btn added the css

and <input name="Submit" type="submit" class="btn" value="Submit">
is a button without any css styling


k

to brush up on your css check out some of the tutorials at
http://www.w3schools.com/css/css_intro.asp or http://www.projectseven.com


Inspiring
February 9, 2007
How do I apply / use this within dreamweaver please.

Idiot level please...


"twocans" <gggg@ohGod.com> wrote in message
news:eqi0h0$i3h$1@forums.macromedia.com...
> Hi Steve,
> This is something I have requested in the past and even emailed a few css
> exension creators begging for one, but no resut as yet.
>
> the button css below i use all the time.
>
> regards
>
> k
>
>
>
> .search {font-family:Tahoma,Verdana,Arial;
> font-size:11px;
> color:686868;
> background-color:#EDF5FB;
> border-left-style: solid;
> border-left-width: 1px;
> border-left-color: cecaae;
>
> border-bottom-style: solid;
> border-bottom-width: 1px;
> border-bottom-color: cecaae;
>
> border-top-style: solid;
> border-top-width: 1px;
> border-top-color: cecaae;
>
> border-right-style: solid;
> border-right-width: 1px;
> border-right-color: cecaae; }
>
> select {
> font-family:Tahoma,Verdana,Arial;
> font-size:11px;
> color:686868;
> }
>
> .textarea_style {
> font-family:Tahoma, Verdana, Arial;
> font-size:11px;
> color:#333333;
> background-color:#ffffff;
> border-style:solid;
> border-width:1px;
> border-color:#B2876A;
> margin: 0;
> padding-left:4px;
> }
> .radiocheck_style{
> font-size:11px;
> color:#333333;
> margin: 0px;
> padding: 0px;
> }
>
> input.btn{
> color:#050;
> font-family:'trebuchet ms',helvetica,sans-serif;
> font-size:10px;
> font-weight:bold;
> background-color:#fed;
> border:1px solid;
> border-top-color:#B2876A;
> border-left-color:#B2876A;
> border-right-color:#B2876A;
> border-bottom-color:#B2876A;
> filter:progid:DXImageTransform.Microsoft.Gradient
> (GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa');
> cursor:pointer;}
>
>
>
>
>


Inspiring
February 9, 2007
Hi Steve,
This is something I have requested in the past and even emailed a few css
exension creators begging for one, but no resut as yet.

the button css below i use all the time.

regards

k



.search {font-family:Tahoma,Verdana,Arial;
font-size:11px;
color:686868;
background-color:#EDF5FB;
border-left-style: solid;
border-left-width: 1px;
border-left-color: cecaae;

border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: cecaae;

border-top-style: solid;
border-top-width: 1px;
border-top-color: cecaae;

border-right-style: solid;
border-right-width: 1px;
border-right-color: cecaae; }

select {
font-family:Tahoma,Verdana,Arial;
font-size:11px;
color:686868;
}

.textarea_style {
font-family:Tahoma, Verdana, Arial;
font-size:11px;
color:#333333;
background-color:#ffffff;
border-style:solid;
border-width:1px;
border-color:#B2876A;
margin: 0;
padding-left:4px;
}
.radiocheck_style{
font-size:11px;
color:#333333;
margin: 0px;
padding: 0px;
}

input.btn{
color:#050;
font-family:'trebuchet ms',helvetica,sans-serif;
font-size:10px;
font-weight:bold;
background-color:#fed;
border:1px solid;
border-top-color:#B2876A;
border-left-color:#B2876A;
border-right-color:#B2876A;
border-bottom-color:#B2876A;
filter:progid:DXImageTransform.Microsoft.Gradient
(GradientType=0,StartColorStr='#ffffffff',EndColorStr='#ffeeddaa');
cursor:pointer;}