Home › Forums › All Other Themes › uppercase
- This topic has 9 replies, 2 voices, and was last updated 6 years, 8 months ago by Sonl Sinha.
-
AuthorPosts
-
April 6, 2018 at 9:52 am #98531
Hi,
Theme: coffee pro
webpage: http://deparel.biz/wp/contact/As you see here: https://imgur.com/WpeBcwb
Transmit button of contact form 7 is converted to uppercase
Headers in footer are converted to uppercaseHow to switch this off? Can it be switched of for whose site?
I have already this code but seems not enough:
h1.entry-title, h1.page-title, h3.widget-title { text-transform: inherit;} .slide_info h2 { text-transform: inherit;} .logo h1 { text-transform: inherit;} h1, h2, h3, h4, h5 { text-transform: inherit;}
April 6, 2018 at 10:13 am #98540Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.cols-4 h5, .wpcf7 form input[type="submit"] { text-transform:inherit;}
Regards,
DaveApril 6, 2018 at 10:36 am #98546Hi,
It does not work. It is still all in uppercase.
April 6, 2018 at 11:14 am #98554Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.cols-4 h5, .wpcf7 form input[type="submit"] { text-transform:inherit !important;}
Regards,
DaveApril 6, 2018 at 11:34 am #98578Hi,
It was still not working. However when I set !important after the h1,h2,h3,h4,h5 then it works partial.
The “Transmit button” is still uppercase: https://imgur.com/mp7iPCU
The total css code now looks as this:
.sitenav ul li, .leftwrap h2, h2.section_title, .section_title, h1.entry-title, h1.page-title, h3.widget-title { text-transform: inherit;} .slide_info h2 { text-transform: inherit;} .logo h1 { text-transform: inherit;} h1, h2, h3, h4, h5 { text-transform: inherit !important;} .contact_right p { height: 27px; overflow: hidden;} .cols-4 h5, .wpcf7 form input[type="submit"] { text-transform:inherit !important;}
April 6, 2018 at 11:53 am #98586Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.contact_left .wpcf7 form input[type="submit"] { text-transform:inherit !important;}
Regards,
DaveApril 6, 2018 at 12:01 pm #98589Still uppercase…
April 6, 2018 at 12:56 pm #98597Hi,
Okay, Kindly send us your URL of the site and WordPress admin details (Username & Password) via sktthemes.net/contact Please mention this forum URL while replying so that we understand what needs to be done.
Regards,
DaveApril 7, 2018 at 11:06 am #98641Hi,
I did some experiment. I made a child theme with only the CSS code where text-transform:uppercase was and changed to ‘none’. The line that changes my Send button is:
#reservation_form input[type=submit], .wpcf7 form input[type="submit"] { text-transform: none; }
However when I put it in custom CSS then it don’t work. When in child theme it works.
So I made child theme with the changes from uppercase to none and all seems to work normal. So this issue is resolved.
Could it help if I email you my child theme? It is only 60 lines of code.
Thank you, Wilfried
April 9, 2018 at 6:41 am #98688Cool
-
AuthorPosts
- You must be logged in to reply to this topic.