• I’d like to switch the widgets titles from all-caps to exactly what I entered. So like a version of

    .widgettitle {
        text-transform: none !important;
    }

    But this one doesn’t work. How does it has to look like to work?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @artim96

    The right CSS selector should be

    .widget-title {
      text-transform: unset;
    }

    Regards.

    Thread Starter artim96

    (@artim96)

    thanks, that did the trick

    Thread Starter artim96

    (@artim96)

    Is there also a method to make it lowercase and bold or something like that? And maybe add horizontal lines? I have three widgets in the primary bar, but only under the standard “news” widget there is a horizontal line

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Widget title no caps’ is closed to new replies.