Hi Hamilton,
You can do this in CSS but will need to tweak your setup just a little. Right now you have it as:
<p class="bigBody">
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
<br>
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
<br>
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
</p>
There are different ways to go about doing this, but to keep it simple, simply wrap the entire pseudo bullet list in one paragraph tag, remove the break tags, and instead separate them with spans. So now it would look like:
<p class="bigBody">
<span>
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
</span>
<span>
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
</span>
<span>
<i class="icon-ok sf-icon sf-icon-float- icon-small"></i>
Bullet point text
</span>
</p>
Then, in your ACP, go to “General Options” under “Theme Options.”
Inside the “Custom CSS” field enter:
.bigBody span {
display: table;
}
.bigBody i {
display: table-cell;
}
^ That last bit of CSS will keep the text from breaking down underneath the checkmark and instead keep it to the side of the checkmark.