• 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: Hide formControlLabel

Hide formControlLabel 10 years 1 month ago #28692

  • lanz
  • lanz's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
How do i go about hiding the formControlLabel and only showing the fields with value inside?

The administrator has disabled public write access.

Hide formControlLabel 10 years 1 month ago #28693

You can add display none to the label tags in css.

Form Properties, > Design > CSS and Javascript and add in the css. (this will depend on what layout you are using but something like ...
<style>
.formControlLabel {
display:none;
}
</style>
The administrator has disabled public write access.

Hide formControlLabel 10 years 1 month ago #28695

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
This scenario can be achieved in more than one way. For example:
1. Use the 2 Lines XHTML layout and do not add caption to your fields.
2. Manually edit the HTML layout and design the form to fit your needs.

Keep in mind that you can use the following line in the Additional Attributes to create a placeholder:
placeholder="Name";

More information on this topic can be found here:
www.rsjoomla.com/support/documentation/view-article/600-how-to-perform-layout-and-style-adjustments.html
My help is not official customer support. To receive your support, submit a ticket by clicking 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!