Hi,
I don't understand what is wrong in the foot New Headlines where the text is double spaced.
Any idea on how to correct this?
Here's my website: http://tremblaytechweb.com/TWdev/
Lyse
Hi,
I don't understand what is wrong in the foot New Headlines where the text is double spaced.
Any idea on how to correct this?
Here's my website: http://tremblaytechweb.com/TWdev/
Lyse
Hi Lyse,
In your custom.css on lines 294 and 558 you have this code:
.sidebar .widgettitle, #footer .widgettitle {
font-size: 10px;
font-weight: bold;
letter-spacing: 1px !important;
padding-bottom: 10px;
text-transform: uppercase;
}
What I suggest first is deleting one those snippets then seeing if that reduces the space. If that doesn't then change the padding-bottom from 10px to 0px (for no space) or 5px (for half of the space).
Example:
.sidebar .widgettitle, #footer .widgettitle {
font-size: 10px;
font-weight: bold;
letter-spacing: 1px !important;
padding-bottom: 5px !important;
text-transform: uppercase;
}
Note I added the !important to the side just to make sure the padding wasn't overwritten.
Hope this helps!
Regards,
Mya
Hi Mya,
I deleted one of the repetition. Then remove the last one but it did not change anything. I instead changed the line height in the following CSS element:
#top .news-content {
clear: both;
display: block;
font-size: 11px;
line-height: 1.4em;
margin: 0;
overflow: hidden;
padding: 7px 0 3px;
position: relative;
}
and that fixed it.
Thanks for you help.
Lyse
Glad it worked. Let us know if you need any further assistance.
Regards,
Mya
This topic has been closed to new replies.