Here:
Code:
.glide_content h2 a {
float: left;
width: auto;
color: #EC1D25;
font-size: 13px;
padding-bottom: 0px !important;
line-height: 40px;
margin-bottom: 10px;
font-weight: bold;
text-decoration: none;
}
Make that like 670px and it will wrap. But at that point, the line-height, which is used to get it to line up with the image, becomes a problem (too much space between lines). And technically, an a tag cannot have width anyway, unless it's display: block. So I'd suggest:
Code:
.glide_content h2 a {
float: left;
width: 670px;
color: #EC1D25;
font-size: 13px;
padding-bottom: 0px !important;
/* line-height: 40px; */
position: relative;
top: 10px;
display: block;
margin-bottom: 20px;
font-weight: bold;
text-decoration: none;
}
Works in IE 9.
Bookmarks