Hi,
I am adding dimensions to a few small products details and need fractions. I would prefer not to use decimals.
I found some code that I think might work but do not know where to insert it my theme code. Theme is Boost.
.fraction {
display: inline-block;
font-size: 0.7em;
padding: 0 0.1em;
text-align: center;
vertical-align: middle;
&:before {
border-bottom: 1px solid #000;
content: attr(top);
display: block;
line-height: 1em;
padding: 0 0.1em;
}
&:after {
content: attr(bottom);
display: block;
line-height: 1em;
padding: 0 0.1em;
}
}