Hello,
Of course, we can help you ! I will better recommend a more simple solution, via Css.
First as start, have a look on
this tutorial
to see how to add some custom Css Command.
Then, use your inspector tool to be able to analyse your html, and more especially your targeted element's class.
This will allow you to create a well prioritized selector, like this scheme :
.html_class_cart_module .html_class_characteristic {
display: block;
}
The "
display: block;" will push your element to be alone on his line.
Hope this will help you to achieved what you need.
Regards