By Paul on Friday, 30 October 2015
Posted in Elegant
Replies 1
Likes 0
Views 5.4K
Votes 0
I've come across an issue where a component is using bootstrap "row-fluid" class.

It seems like this is not supported in the Elegant template which is Bootstrap 3, right? developer holds is the officially supported version of Bootstrap for joomla3 including row-fluid class so it is my template's problem, not the component. I don't want to argue, just get it to work.

http://getbootstrap.com/2.3.2/#fluidGridSystem

is there a way through css override to accommodate the use of the legacy (and official version for Joomla 3) bootstrap or maybe just this specifically?

From what I can figure out, the key elements that would need to be addressed would be overriding the following to get the same frontend output:


<div class="row-fluid">
<div class="span4">
Hi Paul,

Elegant template using Bootstrap 3.3.4 and class .row-fluid is deprecated. To achieve the fluid layout you will need to apply the markup like below
<div class="container-fluid">
<div class="row">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
</div>
</div>

http://getbootstrap.com/css/#grid
·
Friday, 30 October 2015 12:14
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post