td.logoarea-logo {width: 1%; }
img.logo { margin: 0px 10px 5px 10px; }
Unfortunately this produces a conflict with the oik.css file that sets the maximum width of an image to 100%.
img { max-width: 100% }
Since the image is within the table cell it scales itself down to the cell size… which is minute.
The problem can be resolved by altering the CSS for td.logoarea-logo to width: 100%
td.logoarea-logo { width: 100%; }
Live demo of the problem
![]() |

