1) See pm about the donation
2) Why are you even using a table in the text widget, there is no need? You have a one row one column table in each widget.
I would change the widget areas to be like this (this is the first one)
HTML Code:
<div class="my_box">
<a
href="http://www.solidinvestment.se/kop-salj-bolag"
target="_self">
<img style="width: 173px; height: 130px;" alt="Kapitalplacering" src="http://www.solidinvestment.se/wordpress/wp-content/uploads/2013/05/kapital-173x130sv.jpg">
<p class="my_title">Kapitalplacering</p>
<p>Vill du investera i trygga & säkra
projekt? </p>
Investering med bra avkastning.<br>
Fastighetsprojekt, Utlandsprojekt<br>
<p>Kontakta oss såberättar vi mer om vilka projekt som är aktuella just nu.</p>
</a>
</div>
then style it by adding this toi the CSS inserts
HTML Code:
.my_box img {margin-top: 10px;}
.my_box:hover {background-color: green; color: #666666;}
.my_box {
background-color: transparent;
border: 2px solid #163B55;
height: 340px;
text-align: center;
vertical-align: top;
padding: 10px;
width: 190px;
margin: 5px;
}
.my_title {
font-weight: bold;
font-size: 16px;
color: #000000;
}
Now you can make changes quickly with the CSS and the code in the widget area is much easier to deal with.