Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: CSS StyleSheet Problem


Message #1 by "Chirag Shah" <chiragiit@y...> on Thu, 19 Dec 2002 20:59:00
Sorry, Off the topic of ASP databases but, someone can help

I am using this stylesheet on my page

<style>input, textarea, select 
{
font-family: Arial, sans serif;font-size: 10pt;color: #00000;background-
color: #EAEBDD;   border-width: small;   border-style: ridge;   border-
color: #EAEBDD; 
}
</style>

problem is rectangular boxes are appearing in my browser (IE 6) around the 
checkboxes in my HTML form. Any way to resolve this issue?
Message #2 by Jack_Speranza <jsperanza@g...> on Thu, 19 Dec 2002 17:03:15 -0500
On Thursday, December 19, 2002 3:59 PM Chirag Shah said: 

> problem is rectangular boxes are appearing in my browser 
> (IE 6) around the checkboxes in my HTML form. Any way to 
> resolve this issue?

Add a style definitiion for your checkbox element and assign
it a background color that matches the background color of 
the element in which it is contained.

HTH,

Jack
Message #3 by "McAlexander, Jon" <Jon.McAlexander@g...> on Fri, 20 Dec 2002 11:22:10 -0600
Try this.

Create a CLASS style for the Check Boxes hat set the border to none.
Something like this:

<STYLE>
.CHKBOX {
	border-color : #ffffff;
	border-left : none;
	border-right : none;
	border-top : none;
	border-bottom : none;
}
</STYLE>


Jon McAlexander
Gateway
Senior Engineer, IT - Intranet
Ext. 22560, Direct  xxx-xxx-xxxx




-----Original Message-----
From: Chirag Shah [mailto:chiragiit@y...]
Sent: Thursday, December 19, 2002 2:59 PM
To: ASP Databases
Subject: [asp_databases] CSS StyleSheet Problem


Sorry, Off the topic of ASP databases but, someone can help

I am using this stylesheet on my page

<style>input, textarea, select 
{
font-family: Arial, sans serif;font-size: 10pt;color: #00000;background-
color: #EAEBDD;   border-width: small;   border-style: ridge;   border-
color: #EAEBDD; 
}
</style>

problem is rectangular boxes are appearing in my browser (IE 6) around the 
checkboxes in my HTML form. Any way to resolve this issue?
Message #4 by "Serene Groups" <info@s...> on Sat, 21 Dec 2002 10:24:15 +0530
you have mentioned border-width so it will come. better use individual class
for each and every field would be more convenient.

hope this would help you.
thanks

-----Original Message-----
From: Chirag Shah [mailto:chiragiit@y...]
Sent: Thursday, December 19, 2002 8:59 PM
To: ASP Databases
Subject: [asp_databases] CSS StyleSheet Problem


Sorry, Off the topic of ASP databases but, someone can help

I am using this stylesheet on my page

<style>input, textarea, select
{
font-family: Arial, sans serif;font-size: 10pt;color: #00000;background-
color: #EAEBDD;   border-width: small;   border-style: ridge;   border-
color: #EAEBDD;
}
</style>

problem is rectangular boxes are appearing in my browser (IE 6) around the
checkboxes in my HTML form. Any way to resolve this issue?


  Return to Index