This maybe hard to explain, so first off I will show a picture:
As you see, the "blue" image behind the text stops at the end of the text. I want it to go fully to the end of the "box."
If I put a width=100% into my table, it will put the text in the middle of the bar, which I don't want. Basically, I want to go from the image above to the image below:
Currently, my table looks like this (one part of the poll itself):
Under sectiontableentry1, on the CSS, I have:
I have also tried putting width: 100%; in sectiontableentry1, but again no luck. Does anybody know how I can stretch the blue background to the end of the box that holds the poll?
Thanks, and I hope you understand!
As you see, the "blue" image behind the text stops at the end of the text. I want it to go fully to the end of the "box."
If I put a width=100% into my table, it will put the text in the middle of the bar, which I don't want. Basically, I want to go from the image above to the image below:
Currently, my table looks like this (one part of the poll itself):
| Code: |
| <tr>
<td class="sectiontableentry1"> <input type="radio" name="vote" value="opt2"> </td> <td class="sectiontableentry1"> <label for="voteid494"> <?php echo $poll['opt2']; ?> </label> </td> </tr> |
Under sectiontableentry1, on the CSS, I have:
| Code: |
| .sectiontableentry1 {
background-color: #8EC0EB !important; } |
I have also tried putting width: 100%; in sectiontableentry1, but again no luck. Does anybody know how I can stretch the blue background to the end of the box that holds the poll?
Thanks, and I hope you understand!
