How to change the font color of Product Name?

GK User
Fri Dec 04, 2015 11:37 pm
Hello,

What is the override script to change the font color of the product name in virtuemart using the storefront template? I have been searching and I found some options, but they seem not to work. I'm using the storefront template, J3, VM3 and the URL is: http://www.now-i-know-why.com/index.php/buy-book
The product name is shown on the page url "Now I Know Why" and that is what needs to be changed to white or "FFFFFF". Also, in addition I need the override script to the change the font color of "Quantity" and the plus (+) and minus (-) sign to white as well. Your help will be greatly appreciated.

RJ
User avatar
Expert Boarder

GK User
Sat Dec 05, 2015 2:43 pm
You can either change h1 color for only this element:
Code: Select all
.productdetails-view h1 {
    color: #fff;
}

or general for all headers:
Code: Select all
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}
User avatar
Moderator

GK User
Sat Dec 05, 2015 4:33 pm
I will try this and let you know if it works or not.

Thx,
RJ
User avatar
Expert Boarder

GK User
Sat Dec 05, 2015 6:55 pm
Hello,

The product name font color changed and that part worked, however the font color of "Quantity" and the plus (+) and minus (-) sign did not work. What is the correct script to change that text to white "fff"?

Thanks again,
RJ
User avatar
Expert Boarder

GK User
Sun Dec 06, 2015 9:42 pm
Quanity is set by this code:
Code: Select all
label {
    color: #fff;
}

and signs:
Code: Select all
.quantity-controls input[type="button"] {
    color: #fff !important;
}


PS...
https://www.gavick.com/documentation/jo ... ss-changes
User avatar
Moderator

GK User
Mon Dec 07, 2015 12:47 am
Thanks. I will try this and let you know the results.

RJ
User avatar
Expert Boarder

GK User
Mon Dec 07, 2015 11:11 am
Ok :).
User avatar
Moderator

GK User
Mon Dec 07, 2015 6:14 pm
This worked. Thank You.

RJ
User avatar
Expert Boarder

GK User
Mon Dec 07, 2015 7:08 pm
ok, if you have any additional questions regarding this topic, please let me know.
User avatar
Moderator

GK User
Tue Dec 29, 2015 3:45 am
Thank you, will do.

RJ
User avatar
Expert Boarder


cron