How can i add a vertical divider between categories on my P.T. calculator?
I already tried rotating a HR 90 degrees (Fahrenheit) and this is what it turned out with:
You could try and fix this/ play around with this on lines 135- 137 of CSS (margins) & line 79 of HTML (commented out currently).
The inputs boxes are placed in Li
's, example:
<ul class="ulPt">
<li><input type="text" id="leg1Leg" value="leg"></li>
<li><input style="color:red;" type="text" value="Find Leg"></li>
<li><input type="text" id="cLeg" value="C"></li>
<button class="buttonPt">Enter</button>
</ul>
There is 3 of these, all placed in a row (line 72). check the CSS if anything with the margins, etc are causing issues with add a divider. The only lines of the HTML you really have to worry about are lines 72-92. This is where the input box lists are, and nothing below 72 and above 92 will affect anything.
Any ideas? Please ask for clarification.