Account shouldn’t be necessary at this point. I’m glad you were able to sift through the code I sent.
Give me a couple minutes to readjust your site and come up with some new changes for you.
To remove the gap, change the cell height in in the <td> code:
Before:
<td valign=”top” style=”background:url(https://daelkolwitz.com/1/top.jpg);background-repeat: no-repeat;width: 248px;height: 141px;”></td>
After:
<td valign=”top” style=”background:url(https://daelkolwitz.com/1/top.jpg);background-repeat: no-repeat;width: 248px;height: 134px;“></td>
“is there a way to eliminate that space in between and push them to the left, rather than the right?”
Not entirely sure I understand what you mean, are you talking about left justify, vs right justified text?
/*-[ Sidebar ]———————*/
#sidebars p { line-height: 20px }
.sidebar.c-4-12 {
float: right;
width: 34.2%;
line-height: 20px;
background: #F5F5F5;
padding: 2%; <– Change to 0%
padding-top: 31px;
border-left: 1px solid #E8E8E8;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
—————————–
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0; <– Change to 0px
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
—————————–
.widget {
margin-bottom: 27px;
float: left;
clear: both;
width: 100%;
padding-left: 25px; <– Add this line
}
—————————–
table th, table td {
padding: 7px 15px; <– Delete this line
padding-top: 7px; <– Add this line
text-align: left;
}