Order Forms

HostOncilla

New Member
Hi

How do you change the comparison icons from included to not included? Please see attached picture. Also in the default view, how do you make it look like the attached picture?
 

Attachments

  • order-screen1.png
    order-screen1.png
    159.2 KB · Views: 23
  • order-screen2.png
    order-screen2.png
    166.8 KB · Views: 24
Using This
Code:
<li class="exclude">Not include</li>

Use the following html for the layout of the second image
Code:
<div class="items">
    <div class="icon">
        <i class="fa fa-server"></i>
    </div>
    <span>Disk Space:</span>
    <h5>25 GB</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-tachometer-alt"></i>
    </div>
    <span>Bandwidth</span>
    <h5>Unlimited</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-database"></i>
    </div>
    <span>MySQL Databases: </span>
    <h5>Unlimited</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-envelope-open-text"></i>
    </div>
    <span>Email Accounts:</span>
    <h5>Unlimited</h5>
</div>
 
Back
Top