I noticed that whenever I had a heading overflowing onto another line, the bottom-border line always appeared in between the lines. A quick look at the CSS file for the theme revealed the directive:
#content .node h2 {
border-bottom: 1px solid #154ead;
margin-top: 5px;
margin-bottom: 5px;
height: 30px;
}
Correcting it to:
#content .node h2 {
border-bottom: 1px solid #154ead;
margin-top: 5px;
margin-bottom: 5px;
font-size: 30px;
}
solved the problem. Is this what the author wanted to achieve?
I'm attaching the corrected style.css file.
| Comment | File | Size | Author |
|---|---|---|---|
| style.css.txt | 2.62 KB | timba |
Comments
Comment #1
(not verified) commented