While building the PRICE MEMBERSHIP page, the client likes the use of the “Main Color” (in this case, yellow); however, it’s hard to see the numbers (prices) on the page.
Here is an Image: http://imgur.com/IOQPDPo
Also, I’ve asked this before, and a rep told me that there was “space” in the section and I just needed to remove said space. That did not work.
Here is an image: http://imgur.com/coubHE7
And while I’m asking, is it possible to change the FONT just inside this one box? They want something scripty and feminine.
Can you please help?
Thank you.
voicepro
http://shinecharlotte.com
Hey voicepro!
1.) You can use this to alter the price table header background color:
.main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
background-color: red;
color: #ffffff;
border-color: #ffff26;
}
.main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra {
background-color: red;
color: #ffffff;
border-color: #ffff26;
}
2.) Change the color of the promobox text using this:
.avia-promocontent p {
color: blue;
}
Regards,
Ismael
Thanks, Ismael.
Two things:
The COLOR CHANGE for the price tables? Perfect.
The COLOR of the Promo Box? Perfect.
We just forgot HOW TO CHANGE THE FONT OF THE PROMO BOX!
Thank you.
Hey!
You can use this to change the promobox font:
.avia-promocontent p {
color: red;
font-family: 'Open Sans', sans-serif;
}
Best regards,
Ismael
And shall I assume that if I wanted a “SCRIPT” type font, I would simply write:
.avia-promocontent p {
color: red;
font-family: ‘Dancing Script’, serif;
}
Thanks, Ismael.