Academica: Blog Post Titles
-
Is there a way to make blog post titles appear in a larger font in Academica? I don’t know where to start with doing it in CSS.
The blog I need help with is: (visible only to logged in users)
-
I see you are using a custom font. You can make the font for the titles larger on the custom font page.
If you want to do it via CSS, that can be done too. Add the following to the end of your custom CSS and edit the font size as you desire.
.posts .post h2, .posts .page h2 { font-size: 100%; } -
I’ve already tried changing the custom font, but that only works up to a point as the default font for the blog post titles is so small compared with the font for the other headers.
I think I must be doing something wrong with that CSS, as it doesn’t seem to be changing anything. Could it be because I don’t have anything else in my custom CSS at the moment?
-
Sorry, we’ll have to use a bigger hammer. Add the !important attribute to the font size declaration like below.
.posts .post h2, .posts .page h2 { font-size: 200% !important; } -
-
- The topic ‘Academica: Blog Post Titles’ is closed to new replies.