• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Numbers before all fields

Numbers before all fields 5 years 1 month ago #39053

Hi,

since a few days (after a Joomla update?) i have numbers ( 1, 2, 3, 4 etc.) before all fields in all forms.
Never had that before.

Anybody know how that happened and how I can disable it?

www.linssenyachts.com/en/contact/information-request-form.html
The administrator has disabled public write access.

Numbers before all fields 5 years 1 month ago #39057

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

You are using some CSS compression tools and it's possible your website CSS isn't being properly applied, thus the browser itself is the one what adds your numbers to your form layout since, in your case, it's composed out of ordered list elements.

Either try disabling such compression tools and clear your Joomla! cache to see if this helps, or try using some CSS on overwriting this:
ol li{
	list-style-type:none!important; 
}
This is not official customer support. To receive your support, submit a support ticket here.
The administrator has disabled public write access.

Numbers before all fields 5 years 1 month ago #39058

Super. Thanks for your help.

Cache did not help, but CSS overwrite worked perfectly for me.
The strange part was that not all forms had the numbers before the fields...
The administrator has disabled public write access.

Numbers before all fields 5 years 1 month ago #39059

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

It seems you've added it without the <style> tags and this is shown on your page as plain text as well. Notice above.

Use the following instead or add it within an actual CSS file.
<style type="text/css">
ol li{
	list-style-type:none!important; 
}
</style>
This is not official customer support. To receive your support, submit a support ticket here.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!