How to set Item Name to be the same Case Sensitivity as in Admin Panel instead of all in upper case on the Front End item page
How do i set Item Name to be the same Case Sensitivity as it is in Admin Panel instead of letters being in all Upper Case on the Front End item page by default with the Pearl Theme
-
Official comment
While there aren't any theme or Magento options that allow for manipulating titles like this, it can be achieved via a few quick customizations. For example, if you want all your H1 titles to be case sensitive, a way to achieve that would be to use the wp_custom.less file and target h1 with a text-transform: none; as follows:
h1 {
text-transform: none;
}After a regeneration of the LESS / CSS files and Cache Flush, the changes should apply on the frontend.
Keep in mind, however, that this is just an example. This would make all H1 headings on the store case sensitive. You might require more specific targeting, depending on what exactly you'd need to achieve! More information about using the child theme can be found here: https://support.weltpixel.com/hc/en-us/articles/115000705293-How-to-customize-css-xml-phtml-js-files-in-Magento-2-examples-Tutorial-
Comment actions
Please sign in to leave a comment.
Comments
1 comment