- This topic has 9 replies, 2 voices, and was last updated 1 year, 7 months ago by
vako.
-
AuthorPosts
-
September 4, 2023 at 12:58 am #71642
Hi,
The problem I’m facing relates to the formatting of headings in the sidebar and footer sections of my website. Specifically, I’ve been attempting to set the typography for these headings to use lowercase letters with only the first letter capitalized (title case). However, despite my efforts, the headings are consistently displayed in all uppercase (uppercase) formats.
Here are the steps I’ve taken to address this issue:
1. In the WordPress Customizer, I adjusted the typography settings for the sidebar and footer headings, specifying the “Pacifico” font with lowercase text and a font size of 18px.
2. I also attempted to resolve the issue by adding custom CSS to target the headings directly and enforce lowercase formatting.
Despite these efforts, the headings in both the sidebar and footer sections continue to appear entirely in uppercase.
I would greatly appreciate your assistance in resolving this issue, as maintaining consistent typography across my website is crucial to its overall appearance and user experience.
Thank you for your attention to this matter, and I look forward to your guidance in resolving this issue.
September 4, 2023 at 5:54 pm #71646Hi Zainab,
Please navigate to Dashboard > Appearance > Customize > Additional CSS section add the following snippet:
.sidebar-right h2,h3,h4,h5,h6 {
text-transform: Capitalize !important;
}
Kind Regards
September 4, 2023 at 10:32 pm #71648Thank you very much; it worked as expected. However, I’ve noticed that the code doesn’t seem to affect the footer headings. Could you please provide the code to make the footer headings also appear in small letters?
September 5, 2023 at 6:37 pm #71652Hi Zainab,
Please share your website URL and we will check for possible solutions.
Kind Regards
September 6, 2023 at 12:22 am #71655Please find my website link above. Kindly review the footer heading, as it appears to be in uppercase letters, whereas the code you provided was intended for the sidebar.
September 6, 2023 at 6:12 pm #71657Hi Zainab,
Please replace the existing snippet with this one:
.widget-title h2,h3,h4,h5,h6 {
text-transform: Capitalize !important;
}
Kind Regards
September 7, 2023 at 3:48 pm #71660This reply has been marked as private.September 7, 2023 at 5:49 pm #71663Done, please check and let us know if you need any further help.
Kind Regards
September 7, 2023 at 6:17 pm #71664Thanks
September 8, 2023 at 6:55 pm #71668Feel free to contact us at any time, we are more than happy to help.
Kind Regards
-
AuthorPosts
- You must be logged in to reply to this topic.