Your title is an image, not a font, that’s why it’s not adjusting. You need to change the size of the image. Or are you referring to another title? Would you mind being a bit more specific?
.post .entry {
margin-top: 26px;
}
This being applied to that information below the slider. You’ll need to adjust this margin for the information to be closer, but it would take a bit more, you may need to apply it’s own margin, because this will certain affect anything using this class.
For future reference, a theming issue would likely belong better in the Templates and Themes section, since this isn’t a WordPress issue, but a design issue.
Maybe I got the term wrong, but the title meaning the name of the page just before the content. It’s certainly not an image since it changes with each page made.
I’ll try that coding in terms of moving the content up, for now I’m spent so I’ll have to report back on that matter.
Thanks for the heads up. I’ll surely post within the templates and themes section next time an issue arises.
For now the issue still stands. I’ll give another crack at it tomorrow. Thanks for the info so far. I’m confident that coding will improve the sites design.
h2 {
font-size: 14px;
}
This is what you need to edit for that. It appears this is the main style for all h2 tags and will adjust all of them unless you specifically override this rule.
Your code for the content being closer to the header worked. Thanks!
As for the h2 business, it’s still not working. I’ve changed every h2 font setting to something around 48 and still got nothing. I also replaced all .php files with their originals just to make sure and still nothing. For now I have temporarily removed the h2 title from all pages until this can be solved.
It’s probably the smallest detail I’m missing.
Finally solved. All I did was edit the following in the CSS file:
.singlepage .post .title h2 {line-height:27px; overflow:hidden; max-height:55px; font-weight: bold; font-size:18px;}
Items in bold were added to that line of code and it looks like everything is working fine now.