• 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: Text under the title?

Text under the title? 10 years 1 month ago #30827

  • ajj_oslo
  • ajj_oslo's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi,

1. I have tried to search, but was not able to find the answers. Please guide me, how to add some descriptive text under the form title?

2. How do I change font of the checkbox options?

Thanks.

AJ
The administrator has disabled public write access.

Text under the title? 10 years 1 month ago #30835

  • bogdan.tataru
  • bogdan.tataru's Avatar
  • OFFLINE
  • Gold Boarder
  • Posts: 174
  • Thank you received: 40
I will respond your questions one at the time.

1. In order to add some text that describes your form you can use a "Free text" form component. You can add it from Components >> RSForm! Pro >> Manage Forms click on your form and edit it. On the left sidebar you should see the "Free text" component. Complete the name and add the desired description for the form in the description field with or without HTML code. After completing those fields drag it at the top before any other form components.

More about this component you can find here:

www.rsjoomla.com/support/documentation/v...e/832-free-text.html

2. You can change the checkbox label font by adding some css styles to your form. Head to Component >> RSForm! Pro >> Manage Forms edit your form and at the top click on Properties. Search for CSS and Javascript tab on the left sidebar and add this code in the first field:
<style>
label[for="ContactBy0"]{
font-family:Arial;
}
</style>


This will change the label font-family for the checkbox with id "ContactBy0", where ContactBy is the name of your checkbox group and 0 is the position of the element in the group. So, if you named your checkbox group "Test" you will have "Test0" for the first label of your group.

Or you can use the following style for changing the label font-family for all the checkboxes in the group:
<style>
.rsform-block-contactby label{
font-family:"Open Sans",sans-serif;
}
</style>


More about this matter you can find here:

www.rsjoomla.com/support/documentation/v...-and-javascript.html
My help is not official customer support. To receive assistance, submit a ticket by clicking here
The administrator has disabled public write access.
The following user(s) said Thank You: ajj_oslo
  • 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!