Tagged: customize H3
-
AuthorPosts
-
March 2, 2024 at 6:55 pm #1436054
Good day,
I am trying to make all of my H3 uppercase. The customization is not taking. I tried to put some quick CSS and maybe I did the wrong wording but that is not working either.
Can you help?
thank youMarch 2, 2024 at 8:02 pm #1436060Hey extraeyes,
You can set that under Enfold->Advanced Styling, look for the text transform property once you have selected the h3 tag.
Best regards,
RikardMarch 3, 2024 at 2:39 pm #1436125I am not sure you understand. IT IS NOT TAKING, NOT WORKING.
Thank you
March 3, 2024 at 4:25 pm #1436137March 5, 2024 at 1:29 pm #1436371Sent what you need. Thank you. Sometimes it only works on the second login not sure why.
- This reply was modified 8 months, 2 weeks ago by extraeyes.
March 5, 2024 at 5:23 pm #1436395Hi,
Thank for that. I see that all the h3 elements on your front page have additional tags within them, that means that they will pick up the styling for that tag instead. If you create a test page with a plain h3 element, then you will likely see that the theme settings are working. If you need to target your current setup, then you will need to use custom CSS like this:
h3 span, h3 span strong, h3 span a { text-transform: uppercase; }
Best regards,
RikardMarch 5, 2024 at 8:24 pm #1436415Thank you. I am sorry, but I do not understand what you mean by addiontal tags with them.
On all of my pages I have H3 sometimes in one layout element box by itself and they are still not Uppercase.
Please advise what tags mean ? And NO, on a new page it is still not uppercase.
I can use your supplied code to add in thank you but still would like to understand tags.
PamMarch 6, 2024 at 7:52 am #1436449Hi,
Thank you for the update.
I tried to put some quick CSS and maybe I did the wrong wording but that is not working either.
What css did you use? There are extra html tags inside the h3 tag, so you’ll need to use a more specific css selector in order to target those tags or elements, as @Rikard suggested earlier.
Example html in one of your text blocks:
<h3> <a href="https://site.com/portfolio-item/east-point-lighthouse-n-j-photography-hot-spot/"> <span style="color: #ffff00;"><strong>EAST POINT LIGHTHOUSE</strong></span> </a></h3>
To target the strong tag or any elements inside the h3, you can try this css code.
h3 a, h3 a span, h3 a span strong { text-transform: uppercase; }
Best regards,
IsmaelMarch 7, 2024 at 2:27 am #1436566you can do that inline like your color setting:
<h3> <a href="https://site.com/portfolio-item/east-point-lighthouse-n-j-photography-hot-spot/"> <span style="color: #ffff00; text-transform: uppercase"><strong>EAST POINT LIGHTHOUSE</strong></span> </a> </h3>
or globaly:
#top .avia_textblock h3 strong { text-transform: uppercase !important; }
if you do like to have it only on some h3 – you had to use a custom-class
-
AuthorPosts
- You must be logged in to reply to this topic.