Hi,
I’m trying to change the Magazine content element date to normal case. I understand the css to edit is in enfold/css/shortcodes.css
.av-magazine-time, .av-magazine-author, .av-magazine-text-sep{font-size: 12px; text-transform: uppercase;}
I understand I can override the style in enfold/css/custom.css
I’m wondering is there a way to do it without editing the parent theme? I’m using a child theme. I’ve tried to override the style in enfold-child/style.css, enfold-child/css/custom.css and enfold-child/css/shortcodes.css but all to no avail.
Thanks!
Hi senso ;
in order to have the time text on “normal case” (April 21, 2014) instead of (APRIL 21, 2014)
add this line into your child theme style.css file :
.av-magazine-time {text-transform: none !important;}
Hi berafiks and Yigit,
Thanks and it does work. However, is there a way to not use the !important? Is there a way to make css/custom.css works in child theme?
Hey!
You can try adding the code as following
<code.av-magazine-time {text-transform: none; }
simply without !important rule. You can use Style.css file of your child theme to add your custom CSS code.
Best regards,
Yigit
Works! Thanks begrafiks and Yigit,