What CSS code do I need to make the language codes uppercase?

Created on 26 February 2025, about 1 month ago

Hello,
In another issue I saw a request to make it possible to change the language codes to uppercase.
It was suggested to transform them in css.
I have started learning cssnot too long ago so I don't know how exactly to do that.
I tried several things such as:

.language-link {
text-transform: uppercase;
}
.language-link is-active {
text-transform: uppercase;
}
.nl {
text-transform: uppercase;
}
.en is-active {
text-transform: uppercase;
}

But with all these options the language codes remain lowercase.
Could you please share what css code I need in my custom css to override the language codes to be transformed to uppercase?
With friendly greetings,
Rob Bastiaansen

💬 Support request
Status

Active

Version

1.2

Component

Code

Created by

🇳🇱Netherlands RobBNL

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @RobBNL
  • 🇩🇪Germany szeidler Berlin

    Hi,

    that's not particularly a question for this module, but a general theming question. You would need to inspect the HTML of your website, because the elements and classes are depending on the theme you're using.

    On a most sites I have seen the following would be enough. But that's what you already seem to have tested out.

    .language-link {
      text-transform: uppercase;
    }
    
  • 🇳🇱Netherlands RobBNL

    Hi thanks for getting back to me.
    It now works and I learned something.
    I had the development settings enabled to not cache markup, but with that enabled stylesheets are still cached.
    I had expected that nothign would be cached but that's clearly not the case.
    So after clearing the cache my lines in the custom stylesheet where picked up.
    Greetings,
    Rob

  • 🇩🇪Germany szeidler Berlin

    Great to hear. All the best with your Drupal experience.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024