• 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: Column width on responsive

Column width on responsive 11 years 4 months ago #25901

I am trying work out how to increase the first column (one with item titles). I found a ref to adding:
style=\"width:250px;\"

in the attributes. So I added the above to my first item to test and no change, even with altering the width or adding the important tag, no joy.

Is it possible?
The administrator has disabled public write access.

Column width on responsive 11 years 1 month ago #26909

Need a solution for this also, the width is way too thin, and I need it to be 30%-40% of the available canvas.
The administrator has disabled public write access.

Column width on responsive 11 years 1 month ago #26911

I was able get the desired width I was looking for by modifying the following CSS file...

.../components/com_rsform/assets/css/front.css

Starting at around line 241, I have updated the code with the following width parameters…


.formResponsive .formHorizontal .formControlLabel {
float: left;
width: 340px;
padding-top: 5px;
text-align: right;
}

.formResponsive .formHorizontal .formControls {
*display: inline-block;
*padding-left: 20px;
margin-left: 360px;
*margin-left: 0;
}

.formResponsive .formHorizontal .formControls:first-child {
*padding-left: 360px;
}
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!