- This topic has 2 replies, 2 voices, and was last updated 12 years, 4 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › eStore Quantity box BG & text are same color
Tagged: text color same as background
Hi everyone, the “quantity” box in my cart is a medium grey color, and apparently so is the text. I’ve searched the forum & found solutions to color issues with the text in the other areas of the cart, but not the actual box that shows the quantity ordered of any given product. Since eStore pulls colors from the theme, I’ve played around with my theme settings (2010 Weaver) and had no results. The page is here: http://www.clarkplaysguitar.com/the-store/
Right now I have 2 variations of the shopping cart in the sidebar so I can get feedback from some folks on which one they like, both have this issue. I’m guessing that there is a place I can insert a little code to fix the issue, kind of like what Peter gave me for a product display issue.
Here’s more possibly relevant info: WP eStore Version: 6.9.1
WP Version: 3.4.2
WPMU: No
MySQL Version: 5.1.53
WP Table Prefix: wp_
PHP Version: 5.2.17
Thanks, you guys rock!
Clark
Hi Clark,
To change the background color of the quantity box add the following code to your wp_eStore_custom_style.css file:
.eStore_cart_item_qty {
background: white !important;
}
Note: My example is setting the color to white, but you could easily change this to something else if you wanted.
Thanks, Peter!
I did want to leave the quantity box white to make it stand out a little, and I wanted the text to be black, so I added this:
.eStore_cart_item_qty {
background: white !important;
font: black !important;
}
And it works marvelously! And now I know exactly how to change it if I decide to make that box match the rest of the red/black theme.
Thanks, again!
Clark
(humble guitarist, complete code noob)