Guide me how to change the format of title of the Blog

Posted in: Newspaper
Post count: 148

This is one of your magazine format
http://www.screencast.com/t/ZzxWZrmDnxv

Header Section – title style of the Blog

Post count: 22421

Hello,

The theme block titles can be changed from block setings: https://forum.tagdiv.com/block-settings-guide/ but the overall style of the titles is provided by the theme demo you chose. There is no setting to select a different style for the headers.

Thank you!

Post count: 148

Here is the theme of the newspaper
http://demo.tagdiv.com/newspaper_magazine/

And here is the title.Hope all the theme blogs can be interchanged. Correct me If I am wrong
http://www.screencast.com/t/ZzxWZrmDnxv

Post count: 22421

Hello,
The demos can be changed and you can choose whichever demo you like, but you cannot combine demos. You will need css skills to do that. Please provide more details to what you want top achieve.
Thank you!

Post count: 148

This is my current Section Header style

http://www.screencast.com/t/nIOjyksyLgUY

I want in this format
http://www.screencast.com/t/ZzxWZrmDnxv

Post count: 7909

Hi,

You can install the Travel Blog demo which has that design, but if you already installed a demo with content and you have modified the imported content(page, posts, menus) they will be removed if you install another one.
An alternative would be to use custom css:

.block-title span, .block-title a {
background-color: transparent !important;
color: #222;
}

Thanks!

Post count: 148

Thanks Alln

Post count: 148

Thanks Alln,

Can I also make the title bold and change the font ?

Post count: 22421

Hi,

You can add those properties to the code like so:
.block-title span, .block-title a {
background-color: transparent !important;
color: #222;
font-family:verdana;
font-size:15px
}

Please note that a custom font cannot be placed with css if it’s not loaded first. Please use this topic to learn how to load fonts with css: https://forum.tagdiv.com/topic/problem-with-font-on-post-page/

Thank you!

Post count: 148

Thanks Bogdan,
Wish you and your family a very Happy New Year.

Is it possible to make the title “BOLD”

Post count: 22421

Thank you! I wish you a happy new year as well.
If you want to make it bold you can add to the code a font-weight attribute.
Like so:
.block-title span, .block-title a {
background-color: transparent !important;
color: #222;
font-family:verdana;
font-size:15px;
font-weight:bold;
}

Thanks.

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