HomeHome Product Discus... Product Discus...SmithCartSmithCartview product qty text box CSSview product qty text box CSS
Previous
 
Next
New Post
8/30/2010 7:03 AM
 

I used the module.css to change the colors of the text on my cart. When we view a product, I want the description and price to be white. When I change the CSS to be white in this tag:

.SmithProdText
{
font-size: 12px;
color:white

the qty text box, which has a white background, is also white. So the end user can't see the qty. Can you help?

 
New Post
8/30/2010 10:32 PM
 

Textboxes use the following style:

.NormalTextBox
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
}

If you open up the ascx page you are trying to style look for the control you want to style and locate the cssclass tag and it will tell you what css class it uses. If it doesnt have one you can add the css to control the style.


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/22/2010 9:43 AM
 

I changed it to:

.NormalTextBox
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color:balck

}

and it did not work.

 
New Post
9/22/2010 9:45 AM
 
staunchsystems wrote:

I changed it to:

.NormalTextBox
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color:balck

}

and it did not work.

Maybe it was "balck"ing at your choice of color? ;)

 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartview product qty text box CSSview product qty text box CSS