Block Title Style

Posted in: Newspaper
Post count: 47

Hi

How do I setup additional block title styles?

I would like to have different size font on different titles, so say h1 on my main page block and say h3 on a slightly less important block and h4 on the least important page block.

Post count: 6600

Hi,

The theme doesn’t have build in a features like that and need custom modifications, but if you want you can try to modify it yourself. You need to modify here: http://screencast.com/t/eNtRCWCNjSEq

Add a condition on the title so if it’s homepage it displays h1 and on the rest it displays h2:

if i(s_home()) {
<h1>Title</h1>
}
else {
<h2>Title</h2>
}

If you don’t know how to modify this we recommend to hire a developer.

Thank you

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.