Hey,
you help med with this code
#top #wrap_all .all_colors h3,
#top #wrap_all .all_colors h1,
#top #wrap_all .all_colors h2,
#top #wrap_all .all_colors h4,
#top #wrap_all .all_colors h5,
#top #wrap_all .all_colors h6 {
text-transform: lowercase;
}
but I wasn’t clear enough. I want to be able to choose small or capital letters for all h1-h6 tags.
What code do I need then?
Thanks
Charlotte
Hey Charlotte,
Unfortunately, we can’t make it a “choose” option. At the moment this can only be done via css, but can be considered as an option for future updates.
Best regards,
Jordan Shannon
Hi Jordan,
ok, but what code shall I add then?
I just want the h1-h6 tag be with either small letters or capital letters, just like I write them.
Thanks
Charlotte
Hi,
The code above should have worked. Please provide a link to the site/page in question. This may have to be done on a case by case basis on the page since there is no toggle select.
Best regards,
Jordan Shannon
you can use :
text-transform : none ( maybe an !important is necessary )
Hi,
What exactly are you referring to? Where do I find text-transform: none?
Sorry i thought this was clear where to replace!
#top #wrap_all .all_colors h1,
#top #wrap_all .all_colors h2,
#top #wrap_all .all_colors h3,
#top #wrap_all .all_colors h4,
#top #wrap_all .all_colors h5,
#top #wrap_all .all_colors h6 {
text-transform: none;
}
Great, thanks :)
none No capitalization. The text renders as it is. This is default
capitalize Transforms the first character of each word to uppercase
uppercase Transforms all characters to uppercase
lowercase Transforms all characters to lowercase
initial Sets this property to its default value.
inherit Inherits this property from its parent element.