1. marcusadamski
  2. Sherlock Holmes
  3. Commercial Templates
  4. Friday, 13 January 2017
  5.  Subscribe via email
Hi.

I'm looking to have two columns within an article, the first column being slightly wider than the second (say 60%: 40%)

The following code will work, but it creates two equally sized columns:

<div class="col-2"><div>First column of your content...</div></div>
<div class="col-2"><div>Second column of your content...</div></div>
<div class="clear"></div>


I was trying to get bootstrap to work. I.e. using the following example from their website:

<div class="container-fluid">
<div class="row">
<div class="col-sm-6">.col-sm-6</div>
<div class="col-sm-3">.col-sm-3</div>
</div>
</div>


... but that doesn't work within an article, using a Joomla51 template.

Could you please advise what's the best way to achieve this?

Many thanks
Marc
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

As Joomla is based on Bootstrap 2.3, have you tried the following instead...

<div class="row">
<div class="span6">.col-sm-6</div>
<div class="span3">.col-sm-3</div>
</div>


CiarĂ¡n
  1. more than a month ago
  2. Commercial Templates
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!