Hi,
I would like to control the color and size of the .footercredits
I tried adding this to the child theme style.css file. I also tried adding it to the custom css in the Advanced Settings tab. Did not work.
.footercredits p {
color: #aaa;
and I added this to the child theme virtue.css file to control the size. Did not work either.
.footercredits p {
font-size: 10px;
padding: 4px 0;
Also I would like to make .product .kad_add_to_cart text-transform set to none instead of uppercase..
I tried adding this to the child theme virtue.css. Did not work.
.product .kad_add_to_cart {
font-size: 20px;
text-transform: none;
padding: 8px 18px;
By the way I am using a child theme configuration and I made the modifications in both css files in the child directory. See complete file text below.
What am I doing wrong? Be gentle, I am a newbie at this. 🙂
*Login to see link
style.css
/*
Theme Name: Virtue – Premium Child
Template: virtue_premium
Author: Child Theme Configurator
Version: 1.0.1431572538
Updated: 2015-05-13 20:02:18
*/
@charset “UTF-8”;
.virtue_image_widget_caption {
font-size: 19px;
color: #444;
font-family: Lobster;
margin-top: 5px;
}
.footercredits p {
color: #fff;
=====================================================
virtue.css
/*
Theme Name: Virtue – Premium Child
Template: virtue_premium
Author: Child Theme Configurator
Version: 1.0.1431572538
Updated: 2015-05-13 20:02:18
*/
@charset “UTF-8”;
.product .kad_add_to_cart {
font-size: 20px;
text-transform: none;
padding: 8px 18px;
.footercredits p {
font-size: 16px;
padding: 4px 0;
Thanks.