Having (as usual) trouble understanding HTML and CSS:
I got a table:
<table style="height:200px;width:120px; border-style:solid;">
<tr>
<td><img src=IMAGELINK" style="height:120px;width:120px;"/></td>
</tr>
<tr>
<td><b> NAME </b> </td>
</tr>
<tr>
<td> <b> PRICE:- </b> </td>
</tr>
<tr>
<td>
<a style=
"
width:50%;
padding:1px;
border-style:solid;
border-width:1px;
border-color: #eee0000;
background-color:#eee000;
text-decoration:none;
color:black;"
href="LINK"> buy
</a>
<a style=
"
width:50%;
padding:1px;
border-style:solid;
border-width:1px;
border-color: #eee0000;
background-color:#eee000;
text-decoration:none;
color:black;"
href="LINK"> read
</a>
</td>
</tr>
</table>
And here's how it looks:
As you can see, the two buy/read buttons are quite small and for some reason they're only taking up half the space of the row. I've tried a whole bunch of different things to get the two buttons to take up the whole row...