This is one of your magazine format
http://www.screencast.com/t/ZzxWZrmDnxv
Header Section – title style of the Blog
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!
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
This is my current Section Header style
http://www.screencast.com/t/nIOjyksyLgUY
I want in this format
http://www.screencast.com/t/ZzxWZrmDnxv
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!
Thanks Alln,
Can I also make the title bold and change the font ?
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!
Thanks Bogdan,
Wish you and your family a very Happy New Year.
Is it possible to make the title “BOLD”
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.
