badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Footer column widget code

#39289

Hi

If you want third column instead of fourth in services widget then your code should be as below with proper clearfix CSS:

<div class="one-third">
  column 1
</div>
<div class="one-third">
  column 2
</div>
<div class="one-third clearfix-half">
  column 3
</div>
<div class="one-third clearfix-third">
  column 4
</div>
<div class="one-third clearfix-half">
  column 5
</div>
<div class="one-third">
  column 6
</div>
<div class="one-third clearfix-half clearfix-third">
  column 7
</div>
<div class="one-third">
  column 8
</div>
<div class="one-third clearfix-half">
  column 9
</div>

clearfix-third is the css which is should be placed in fourth column to clears the above third column rows.

Thank you!