• 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: RS JUno and custom width TOP position

RS JUno and custom width TOP position 9 years 3 months ago #30178

  • it03
  • it03's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Hello

I would like to ask if someone has any idea on how can we setup a custom width (absolute or relational) on "top position", e.g. TOP-A: 20%, TOP-B: 40%, TOP-C: 40%

Thanks!
The administrator has disabled public write access.

RS JUno and custom width TOP position 9 years 3 months ago #30181

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
That particular row in the template, that contains the top-a, top-b and top-c positions uses Bootstrap standard classes to render content.

If you look at the index.php file of the template, at line 77~ (around) you will see that depending on how many top-* positions you use, it creates a row with even columns.

Please note that solutions can be found, it can be hardcoded to a specific layout but we do not recommend it. If you wish to proceed you should remove the module counting function and add the corresponding class to that particular row.

For example, creating an uneven column grid can be done like this:
<div class="row-fluid">
 <div class="span2">
   <jdoc:include type="modules" name="top-a"/>
 </div>
 <div class="span5">
   <jdoc:include type="modules" name="top-b"/>
 </div>
 <div class="span5">
   <jdoc:include type="modules" name="top-c"/>
 </div>
</div>

However, please note that the above is merely a simple example and it's not a solution. Use the above to achieve your result.
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!