Frontpage bottom links

Professional Joomla social template with metro design and JomSocial extension support.
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Apr 17, 2014 4:57 pm
Reply with quote
Report this post
Hi There,

I am battling with the front page bottom links layout. I have minimized it to 3 sections but it displays in two columns instead of using 3. The code for the custom html module is:

Code: Select all
<div class="gkCols" data-cols="3">
<div>
<h3 class="header">Company</h3>
<ul>
<li>About Us</li>
<li>Services</li>
<li>Partnerships</li>
</ul>
</div>
<div>
<h3 class="header"> Contact Us</h3>
<ul>
<li>Contact Us</li>
<li>Support</li>
<li>Locations</li>
</ul>
<h3 class="header"> Social media</h3>
<ul>
<li>Facebook</li>
<li>Google+</li>
<li>Twitter</li>
</ul>
</div>
</div>


Attached is a screenshot of the result. The site can be viewed at http://lnxwebs12.cpt.wa.co.za/~suremail/

Please let me know how to resolve this issue.

Thanks,
Steven
User avatar
Senior Boarder

GK User
Fri Apr 18, 2014 5:59 pm
Reply with quote
Report this post
Hello,

Your problem is caused by the wrong syntax, please use the following code:

Code: Select all
<div class="gkCols" data-cols="3">
<div>
<h3 class="header">Company</h3>
<ul>
<li>About Us</li>
<li>Services</li>
<li>Partnerships</li>
</ul>
</div>
<div>
<h3 class="header"> Contact Us</h3>
<ul>
<li>Contact Us</li>
<li>Support</li>
<li>Locations</li>
</ul>
</div>
<div>
<h3 class="header"> Social media</h3>
<ul>
<li>Facebook</li>
<li>Google+</li>
<li>Twitter</li>
</ul>
</div>
</div>


You have missed:

Code: Select all
</div>
<div>


between two last columns ;)
User avatar
Administrator


cron