Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author joe_bopper

    (@joe_bopper)

    Hi Mildo,

    Yes it is! The submit button text corresponds to the menu item’s Navigation Label in the admin area.

    Cheers,
    Joe

    Thread Starter Mildo820

    (@mildo820)

    Hello,
    thank you very much. Maybe you could also help me with the letters of the text. They are all small even if I type in capital letters. Do you know how to get the first letter to be a capital one?

    Best regards

    Plugin Author joe_bopper

    (@joe_bopper)

    Hi Mildo,

    Sounds like your theme’s css is transforming the button text to lowercase. You need to add some custom css to override this behaviour:

    .bop-nav-search input[type="submit"]{
      text-transform: none !important;
    }

    If your theme is not a third party one (i.e. your own to some extent), just go ahead and add it to your style.css. However, if it is a third party one, you’ll have to do something else to avoid losing your changes when the theme updates. Your theme may have its own allowances for custom css in the admin area (typically in Appearance > Customise), use that if its available. Otherwise, you’ll need a custom css plugin and add it in there instead. Alternatively, you could create a child theme of your current one, though this is the most complicated route and not really worth it for such a small change.

    Cheers,
    Joe

    Thread Starter Mildo820

    (@mildo820)

    Hi Joe,

    this worked perfectly. Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change text of submit bar’ is closed to new replies.