Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #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 you

    http://www.photomagx.com
    Pam

    #1436060

    Hey extraeyes,

    You can set that under Enfold->Advanced Styling, look for the text transform property once you have selected the h3 tag.

    Best regards,
    Rikard

    #1436125

    I am not sure you understand. IT IS NOT TAKING, NOT WORKING.

    Thank you

    #1436137

    Hi,

    Thanks for the update, how can we check your settings?

    Best regards,
    Rikard

    #1436371

    Sent 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.
    #1436395

    Hi,

    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,
    Rikard

    #1436415

    Thank 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.
    Pam

    #1436449

    Hi,

    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,
    Ismael

    #1436566

    you 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

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.