I'm attempting to adjust the position of my radio buttons using CSS positioning, but so far it doesn't seem to be working as expected. I have given each radio option an id and am trying to style them individually within a class named "ticket"...
Even after adding an id to the input element, the styling still isn't taking effect:
echo '<tr><th>Has this been Resolved?</th><td><input type="radio" name="resolve" value="Yes" id="yes">Yes<input type="radio" name="resolve" value="No" id="no">No</td></tr>
<tr><th></th><td><textarea name="reply"></textarea></tr></td>
<tr><th>Add Reply/Message</th><td><input type="submit" name="submit" value="Reply"></tr></td>
Here is the CSS that I am using:
.ticket input[type="radio"] {
position: relative;
right: 55em;
}