Author Topic: Change color of title attribute?  (Read 8944 times)

Sam

  • Beginner
  • *
  • Posts: 7
Change color of title attribute?
« on: April 24, 2008, 17:23:00 PM »
Hi

First of all I want to say Awesome! Virtuemart 1.1.0 just Rocks :) I also love the way the attribute section is, very easy to work with.

My question. I'm having a problem with the color of the attribute title and the ajax add to cart text. It's too light to show up on the page and I would like to change it to maybe black text. How would I go about doing this? I've added a picture here so you can see how dim the text looks.

Thanks to all that made Virtuemart 1.1.0 come to life, it's one awesome shopping cart!

[attachment cleanup by admin]

gregdev

  • Full Member
  • ***
  • Posts: 968
    • PlainlyCode
Re: Change color of title attribute?
« Reply #1 on: April 24, 2008, 19:05:18 PM »
That text is contained in label with a class of quantity_box. So, you could add the following style to your css file:

Code: [Select]
label.quantity_box {color: #000000;}

(or whatever color you want).

Greg